how to make odd number even js code example
Example 1: log odd numbers js
for(var n = 0; n <= 10; n+=2) console.log(n)
Example 2: 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";
}
}