This commit is contained in:
Ilya Kantor 2019-08-09 17:35:25 +03:00
parent a66f514df7
commit e82885055b
2 changed files with 2 additions and 2 deletions

View file

@ -19,7 +19,7 @@ For example:
...
```
We will learn functions (a way to group commands) soon. Looking ahead, let's note that `"use strict"` can be put at the start of most kinds of functions instead of the whole script. Doing that enables strict mode in that function only. But usually, people use it for the whole script.
We will learn functions (a way to group commands) soon. Looking ahead, let's note that `"use strict"` can be put at the beginning of the function body instead of the whole script. Doing that enables strict mode in that function only. But usually, people use it for the whole script.
````warn header="Ensure that \"use strict\" is at the top"