JS Basic
JS Interview Programs
- JS Interview Programs
- JS Abundant Number
- JS Amicable Number
- JS Armstrong Number
- JS Average of N Numbers
- JS Automorphic Number
- JS Biggest of three numbers
- JS Binary to Decimal
- JS Common Divisors
- JS Composite Number
- JS Condense a Number
- JS Cube Number
- JS Decimal to Binary
- JS Decimal to Octal
- JS Disarium Number
- JS Even Number
- JS Evil Number
- JS Factorial of a Number
- JS Fibonacci Series
- JS GCD
- JS Happy Number
- JS Harshad Number
- JS LCM
- JS Leap Year
- JS Magic Number
- JS Matrix Addition
- JS Matrix Division
- JS Matrix Multiplication
- JS Matrix Subtraction
- JS Matrix Transpose
- JS Maximum Value of an Array
- JS Minimum Value of an Array
- JS Multiplication Table
- JS Natural Number
- JS Number Combination
- JS Odd Number
- JS Palindrome Number
- JS Pascalβs Triangle
- JS Perfect Number
- JS Perfect Square
- JS Power of 2
- JS Power of 3
- JS Pronic Number
- JS Prime Factor
- JS Prime Number
- JS Smith Number
- JS Strong Number
- JS Sum of Array
- JS Sum of Digits
- JS Swap Two Numbers
- JS Triangular Number
JavaScript Program to Check Odd Number
Photo Credit to CodeToFun
π Introduction
In the realm of programming, dealing with numbers is a fundamental task. One common requirement is checking whether a given number is odd or not.
An odd number is an integer that is not exactly divisible by 2 and leaves a remainder of 1 when divided by 2.
In this tutorial, we will explore a JavaScript program designed to check whether a given number is odd. The program involves using the modulo operator to determine if the number is not divisible by 2.
π Example
Let's delve into the JavaScript code that accomplishes this task.
// Function to check if a number is odd
function isOdd(number) {
// If the remainder is 1, the number is odd
return number % 2 !== 0;
}
// Driver program
// Replace this value with the number you want to check
const number = 15;
// Call the function to check if the number is odd
if (isOdd(number)) {
console.log(`${number} is an odd number.`);
} else {
console.log(`${number} is not an odd number.`);
}
π» Testing the Program
To test the program with different numbers, modify the value of number in the code.
15 is an odd number.
π§ How the Program Works
- The program defines a function isOdd that takes a number as input and returns true if the number is odd, and false otherwise.
- Replace the value of number in the main program with the desired number you want to check.
- The program calls the isOdd function and prints the result using console.log.
π Between the Given Range
Let's take a look at the javascript code that checks and displays odd numbers in the specified range.
// Function to check if a number is odd
function isOdd(number) {
return number % 2 !== 0;
}
// Driver program
function checkOddNumbersInRange() {
let oddNumbers = [];
// Loop through the range from 1 to 10
for (let i = 1; i <= 10; i++) {
if (isOdd(i)) {
oddNumbers.push(i);
}
}
return oddNumbers;
}
// Call the function to get odd numbers in the range
const oddNumbersInRange = checkOddNumbersInRange();
// Output the result
console.log(`Odd Numbers in the range 1 to 10: ${oddNumbersInRange.join(' ')}`);
π» Testing the Program
Odd Numbers in the range 1 to 10: 1 3 5 7 9
The range for this program is fixed from 1 to 10. To test the program, simply run it.
π§ How the Program Works
- The program defines a function isOdd that checks whether a given number is odd.
- The checkOddNumbersInRange function loops through the range from 1 to 10, calls isOdd to determine if each number is odd, and collects the odd numbers in an array.
- The result is then output in the specified format using console.log.
π§ Understanding the Concept of Odd Number
Before delving into the code, let's understand the concept of odd numbers. An odd number is an integer that is not exactly divisible by 2. In other words, when an odd number is divided by 2, the remainder is 1.
π’ Optimizing the Program
While the provided program is effective, consider exploring and implementing alternative approaches or optimizations for checking odd numbers.
Feel free to incorporate and modify this code as needed for your specific use case. Happy coding!
π¨βπ» Join our Community:
Author
For over eight years, I worked as a full-stack web developer. Now, I have chosen my profession as a full-time blogger at codetofun.com.
Buy me a coffee to make codetofun.com free for everyone.
Buy me a Coffee
If you have any doubts regarding this article (JavaScript Program to Check Odd Number), please comment here. I will help you immediately.