We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5dff42b commit b3c7a7fCopy full SHA for b3c7a7f
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