var -> et

This commit is contained in:
Ilya Kantor 2015-09-25 13:56:55 +02:00
parent 6a9f66ef27
commit 1d236fddf8
45 changed files with 305 additions and 295 deletions

View file

@ -223,7 +223,7 @@ If we'd like to add several `<script>` tags on the page and keep their execution
Like this:
```js
function addScript(src);
var script = document.createElement('script');
let script = document.createElement('script');
script.src = src;
*!*
script.async = false;