Basic JavaScript: Count Backwards With a For Loop | freeCodeCamp.org
Mon Oct 03 2022 22:28:35 GMT+0000 (Coordinated Universal Time)
Saved by @chymax030 #javascript
// Setup const myArray = []; // Only change code below this line for (var i = 9; i > 0; i -= 2) { myArray.push(i); }
https://www.freecodecamp.org/learn/javascript-algorithms-and-data-structures/basic-javascript/count-backwards-with-a-for-loop
Comments