We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents fac9385 + b3c7a7f commit ffbe0f5Copy full SHA for ffbe0f5
1 file changed
1-js/06-advanced-functions/04-var/article.md
@@ -56,9 +56,9 @@ alert(test); // ReferenceError: test is not defined
56
*/!*
57
```
58
59
-The same thing for loops: `var` cannot be block- or loop-local:
+The same thing for loops: `var` cannot be block or loop-local:
60
61
-```js
+```js run
62
for (var i = 0; i < 10; i++) {
63
var one = 1;
64
// ...
0 commit comments