Merge pull request #116 from mattfellenz/patch-1

Fix typo in Javascript Specials
This commit is contained in:
Ilya Kantor 2017-08-05 00:16:24 +02:00 committed by GitHub
commit 10d2b737ca

View file

@ -57,7 +57,7 @@ To fully enable all features of modern JavaScript, we should start scripts with
The directive must be at the top of a script or at the beginning of a function.
Without `"use strict"`, everything still works, but some features behave in old-fasion, "compatible" way. We'd generally prefer the modern behavior.
Without `"use strict"`, everything still works, but some features behave in old-fashion, "compatible" way. We'd generally prefer the modern behavior.
Some modern features of the language (like classes that we'll study in the future) enable strict mode implicitly.