Skip to content
Advertisement

push even and odd numbers to respective arrays using a for loop

I’m a total beginner and I’m stuck completely on this problem. I’m supposed to use a for loop to traverse an array, pushing odd numbers to the ‘odd’ array, and evens to the ‘even’ array.

No numbers are showing up in my arrays when I test the code. I’ve tried writing it the following two ways:

JavaScript

I’ve checked out some of the solutions to the problem and with respect to the code I’ve got in #2, the most common solution I guess has the for condition written like this:

JavaScript

and then in the if else statement it’s written:

JavaScript

respectively, but I have no idea how people got there especially concerning the ‘for’ bit. Can anyone help my brain understand this?

Advertisement

Answer

JavaScript
User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement