Answers for "even and odd on js"

10

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
0

odd and even in javascript

const OddorEven = (num)=>num&1?"odd":"even";
Posted by: Guest on October-28-2021
0

javascript even number

let isEven = (n) => !(n&1);
Posted by: Guest on October-30-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language