Skip to content

Commit c541317

Browse files
committed
Merge branch 'master' of github.com:javascript-tutorial/en.javascript.info into sync-5cb9760a
2 parents 2a5c7e5 + 5cb9760 commit c541317

282 files changed

Lines changed: 1242 additions & 13077 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1-js/01-getting-started/1-intro/limitations.svg

Lines changed: 1 addition & 92 deletions
Loading
2.08 KB
Loading
-18.6 KB
Loading

1-js/02-first-steps/03-strict-mode/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ For example:
1919
...
2020
```
2121

22-
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.
22+
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.
2323

2424

2525
````warn header="Ensure that \"use strict\" is at the top"
Lines changed: 1 addition & 37 deletions
Loading
Lines changed: 1 addition & 26 deletions
Loading

0 commit comments

Comments
 (0)