Answers for "Check is the given number is even or not. Your function shoudl return True if the number is even, andFalse if the number is odd."

3

odd or even js

for(let count =0; count<=100;count++){
 count%2==0? console.log(`${count} is even`):console.log(`${count} is odd`);
 ;
}
Posted by: Guest on June-28-2020

Code answers related to "Check is the given number is even or not. Your function shoudl return True if the number is even, andFalse if the number is odd."

Code answers related to "Javascript"

Browse Popular Code Answers by Language