This commit is contained in:
Ilya Kantor 2017-04-09 23:17:57 +02:00
parent 011d72bf17
commit 1b03278014
6 changed files with 30 additions and 3 deletions

View file

@ -35,7 +35,7 @@ alert(window.innerHeight); // some number
## Document Object Model (DOM)
The `document` object gives access to a page contents. We can change or create literally anything.
The `document` object gives access to the page content. We can change or create literally anything.
For instance:
```js run