Merge pull request #474 from skube/patch-1

Fix typo
This commit is contained in:
Ilya Kantor 2017-03-27 01:23:13 +03:00 committed by GitHub
commit c8b560d1f4

View file

@ -4,7 +4,7 @@
When JavaScript was created, there was an idea of a "global object" that provides all global variables and functions. It was planned that multiple in-browser scripts would use that single global object and share variables through it.
Since then, JavaScript greatly evolved, and that idea of linking code through global variables became much less appealing. In modern JavaScript, the concept of modules too its place.
Since then, JavaScript greatly evolved, and that idea of linking code through global variables became much less appealing. In modern JavaScript, the concept of modules took its place.
But the global object still remains in the specification.