Skip to content

Commit ffbe0f5

Browse files
authored
Merge pull request #3251 from Rnbsov/patch-77
👾 add run button and remove typo
2 parents fac9385 + b3c7a7f commit ffbe0f5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

1-js/06-advanced-functions/04-var/article.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,9 @@ alert(test); // ReferenceError: test is not defined
5656
*/!*
5757
```
5858

59-
The same thing for loops: `var` cannot be block- or loop-local:
59+
The same thing for loops: `var` cannot be block or loop-local:
6060

61-
```js
61+
```js run
6262
for (var i = 0; i < 10; i++) {
6363
var one = 1;
6464
// ...

0 commit comments

Comments
 (0)