improvements

This commit is contained in:
Ilya Kantor 2019-07-16 19:23:00 +03:00
parent 67e317cee9
commit 52ef3256c9
16 changed files with 100 additions and 96 deletions

View file

@ -22,7 +22,7 @@ function sayHi() {
alert("Hello");
}
// global functions are accessible as properties of window
// global functions are methods of the global objecct:
window.sayHi();
```