This commit is contained in:
Ilya Kantor 2017-03-21 14:41:49 +03:00
parent 4ae129054e
commit ab9ab64bd5
476 changed files with 3370 additions and 532 deletions

View file

@ -212,7 +212,7 @@ If you are writing several "helper" functions and the code to use them, then the
}
// *!*the code which uses them*/!*
var elem = createElement();
let elem = createElement();
setHandler(elem);
walkAround();
```
@ -220,7 +220,7 @@ If you are writing several "helper" functions and the code to use them, then the
```js
// *!*the code which uses the functions*/!*
var elem = createElement();
let elem = createElement();
setHandler(elem);
walkAround();