How to check whether all numbers in array are odd or not in JavaScript

1 Answer

0 votes
const numbers = [1,3,5,7,9,11,13];

console.log(numbers.every(number => number % 2 === 1))

  
    
    
/*
run:
    
true
    
*/

 



answered Jun 12, 2021 by avibootz

Related questions

...