Skip to content

Commit

Permalink
Merge pull request #3970 from ltegman/fix/waypoint-count-backwards-se…
Browse files Browse the repository at this point in the history
…ed-typo-3968

Fix Waypoint Count Backwards Seed Code
  • Loading branch information
Aniruddh Agarwal committed Oct 28, 2015
2 parents cdc040d + 9d668c3 commit b2dbe08
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions seed/challenges/basic-javascript.json
Original file line number Diff line number Diff line change
Expand Up @@ -963,9 +963,9 @@
"assert.deepEqual(myArray, [9,7,5,3,1], 'message: <code>myArray</code> should equal <code>[9,7,5,3,1]</code>');"
],
"challengeSeed":[
"ourArray = [];",
"var ourArray = [];",
"",
"for(var i = 9; i > 0; i -= 2){",
"for(var i = 10; i > 0; i -= 2){",
" ourArray.push(i);",
"}",
"",
Expand Down

0 comments on commit b2dbe08

Please sign in to comment.