Easy
Calculate Sum of Even Numbers in JavaScript Array Using Array Methods
You need to calculate the sum of all the even numbers in the numbers array. Which of the following implementations will return the correct result?
1const numbers = [12, 15, 20, 25, 30, 35];