Answers for "sum of odd numbers in an array javascript"

1

sum of odd numbers in an array javascript without loop

var total = numbers.reduce(function(total, current) {
    return total + current;
}, 0);

console.log(total);
Posted by: Guest on July-10-2020
0

sum of odd numbers in an array javascript without loop

var numbers = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12];

var evenNumbers = numbers.filter(function(item) {
   return (item % 2 == 0);
});

console.log(evenNumbers);
Posted by: Guest on July-10-2020
-1

sum of odd numbers in an array javascript

///sum of odd numbers in an array javascript without loop
var numbers = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12];

var evenNumbers = numbers.filter(function(item) {
   return (item % 2 == 0);
});

console.log(evenNumbers);
Posted by: Guest on July-10-2020

Code answers related to "sum of odd numbers in an array javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language