How to return an array with odd numbers from existing array in 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(n => n % 2)

console.log(odds); 

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

 



answered Jun 5, 2022 by avibootz
...