Answers for "write a function in javascript that accepts one number as a parameter, and returns whether that number is even or odd. (return the string "even" or "odd")"

7

js even or

function isEven(n) {
   return n % 2 == 0;
}

function isOdd(n) {
   return Math.abs(n % 2) == 1;
}
Posted by: Guest on September-06-2020
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 "write a function in javascript that accepts one number as a parameter, and returns whether that number is even or odd. (return the string "even" or "odd")"

Code answers related to "Javascript"

Browse Popular Code Answers by Language