Merge pull request #229 from ClimbsRocks/patch-1

Punctuation tweak
This commit is contained in:
Harrison Shoff
2015-01-22 07:54:49 -08:00

View File

@@ -494,8 +494,8 @@
}
// The interpreter is hoisting the variable
// declaration to the top of the scope.
// Which means our example could be rewritten as:
// declaration to the top of the scope,
// which means our example could be rewritten as:
function example() {
var declaredButNotAssigned;
console.log(declaredButNotAssigned); // => undefined