mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-06-13 21:02:08 +08:00
fix seed different from description iterating odd numbers with for loop
closes #4081
This commit is contained in:
parent
d15953a293
commit
eaf01cfe39
@ -925,7 +925,7 @@
|
||||
"challengeSeed":[
|
||||
"var ourArray = [];",
|
||||
"",
|
||||
"for(var i = 1; i < 10; i += 2){",
|
||||
"for(var i = 0; i < 10; i += 2){",
|
||||
" ourArray.push(i);",
|
||||
"}",
|
||||
"",
|
||||
|
||||
Loading…
Reference in New Issue
Block a user