Skip to content

Commit 186f251

Browse files
authored
Merge pull request #57 from brajabi/patch-1
Fix undeclared variable
2 parents 72b29f3 + 5eb19a5 commit 186f251

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

1-js/02-first-steps/07-operators/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -409,7 +409,7 @@ For example:
409409
410410
```js run
411411
*!*
412-
a = (1+2, 3+4);
412+
let a = (1+2, 3+4);
413413
*/!*
414414

415415
alert( a ); // 7 (the result of 3+4)

0 commit comments

Comments
 (0)