Answers for "odd or even program in html using javascript"

4

check if even or odd javascript

function evenOrOdd(num) { //for string length take string
  if (num % 2 == 0) {//and replace numm with string.length here
    return "even";
  } else {
    return "odd";
  }
}
Posted by: Guest on November-22-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 "odd or even program in html using javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language