[javascript/en] Small typo fix

Just a simple 1-word typo fix
This commit is contained in:
Cameron Wood 2015-10-18 05:46:35 -04:00
parent 903ec29a3d
commit c23bba2b60

View File

@ -324,7 +324,7 @@ i; // = 5 - not undefined as you'd expect in a block-scoped language
// scope.
(function(){
var temporary = 5;
// We can access the global scope by assiging to the "global object", which
// We can access the global scope by assigning to the "global object", which
// in a web browser is always `window`. The global object may have a
// different name in non-browser environments such as Node.js.
window.permanent = 10;