Answers for "javascript check for odd number"

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

if odd js

function isEven(value) {
    return !(value % 2)
}
Posted by: Guest on September-02-2020
0

log odd numbers js

for(var n = 0; n <= 10; n+=2) console.log(n)
Posted by: Guest on March-02-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language