how to write all odd numbers in javascript code example
Example 1: log odd numbers js
for(var n = 0; n <= 10; n+=2) console.log(n)
Example 2: how to find even and odd numbers in javascript
<!DOCTYPE html>
<html>
<body>
<script>
var num = 5;
document.write("Number = "+num+"<br>");
if(num % 2 == 0) {
document.write('Number is even!');
} else {
document.write('Number is odd!');
}
</script>
</body>
</html>