Punctuation tweak

This commit is contained in:
Preston Parry
2015-01-21 23:04:39 -08:00
parent c729083645
commit a280e9595f

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