Iterate Odd Numbers With a For Loop using remainder operator

Tell us what’s happening:

I am trying to use modulo operation but it is not working

Your code so far


// Setup
var myArray = [];

// Only change code below this line.
for(var i=0;(i%2)!=0 && i<10;i++){
  myArray.push(i);
}

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36.

Link to the challenge:
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/iterate-odd-numbers-with-a-for-loop

(i%2)!=0 && i<10
These are the condition to end the loop. Your for-loop ends right away because when i = 0, one of the conditions is false (i%2)!=0.

You can either include an if statement inside your loop block to check if the ucrrent i is an odd number, or just initialize your loop at 1 and increment by i+=2. :slight_smile:

2 Likes