Skip to content

Commit 233b83a

Browse files
committed
Updates controlling-logical-flow/62-for-loops.md
Auto commit by GitBook Editor
1 parent 179f905 commit 233b83a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

controlling-logical-flow/62-for-loops.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -46,12 +46,12 @@ let x = 2;
4646
{% solution %}
4747
let x = 2;
4848

49-
for (let i=0;i<12;i++){
49+
for (i=0;i<12;i++){
5050
console.log(x);
5151
}
5252

5353
{% validation %}
54-
assert(foo===8192, "Incorrect.");
54+
assert(x===8192, "Incorrect.");
5555

5656
{% endexercise %}
5757

0 commit comments

Comments
 (0)