Skip to content
Advertisement

Output Even Numbers In an Array

I want to write a program that receives a list of numbers, converts them into an array, and output the even numbers in the array with Modulus Operator and For Loop.

The code does not run as expected:

JavaScript
JavaScript

Thank you

Advertisement

Answer

It’s a matter of incorrect condition. i % 2 would give 0 for even numbers

JavaScript
JavaScript
Advertisement