Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Prodentim Probiotics Specially Designed For The Health Of Your Teeth And Gums

Instant Grammar Checker - Correct all grammar errors and enhance your writing

Teach Your Child To Read

Powerful WordPress hosting for WordPress professionals

Disclosure: My content contains affiliate links.

31,165 questions

40,721 answers

573 users

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

...