This commit is contained in:
Ilya Kantor 2019-03-07 11:01:31 +03:00
parent b310b741b0
commit 2a44419d92
3 changed files with 25 additions and 1 deletions

View file

@ -47,6 +47,24 @@ There is no directive like `"no use strict"` that reverts the engine to old beha
Once we enter strict mode, there's no return.
```
## Browser console
For the future, when you use a browser console to test features, please note that it doesn't `use strict` by default.
Sometimes, when `use strict` makes a difference, you'll get incorrect results.
Even if we press `key:Shift+Enter` to input multiple lines, and put `use strict` on top, it doesn't work. That's because of how the console executes the code internally.
The reliable way to ensure `use strict` would be to input the code into console like this:
```
(function() {
'use strict';
// ...your code...
})()
```
## Always "use strict"
We have yet to cover the differences between strict mode and the "default" mode.