How to find the odd numbers in an array using Node.js

1 Answer

0 votes
const arr = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14];

const odds = arr.filter(number => {
  	return number % 2 !== 0;
});

console.log(odds); 

  
  
  
  
/*
run:
  
[
  1,  3,  5, 7,
  9, 11, 13
]
  
*/

 



answered Jun 5, 2022 by avibootz
...