How to return an array with odd numbers from existing array in JavaScript

1 Answer

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

const odds = arr.filter(n => n % 2)

console.log(odds); 

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

 



answered Jun 5, 2022 by avibootz
...