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 Palindrome Number
Photo Credit to CodeToFun
π Introduction
In the realm of programming, tasks involving numbers often include checking for special properties. One interesting property is whether a number is a palindrome.
A palindrome number reads the same backward as forward.
In this tutorial, we will explore a JavaScript program designed to check whether a given number is a palindrome.
The program involves reversing the digits of the number and comparing it with the original number.
π Example
Let's delve into the JavaScript code that accomplishes this task.
// Function to check if a number is a palindrome
function isPalindrome(number) {
const originalNumber = number;
let reversedNumber = 0,
remainder;
// Reverse the digits of the number
while (number !== 0) {
remainder = number % 10;
reversedNumber = reversedNumber * 10 + remainder;
number = Math.floor(number / 10);
}
// If the reversed number is equal to the original number, it is a palindrome
return originalNumber === reversedNumber;
}
// Driver program
// Replace this value with the number you want to check
const number = 121;
// Call the function to check if the number is a palindrome
if (isPalindrome(number)) {
console.log(`${number} is a palindrome number.`);
} else {
console.log(`${number} is not a palindrome number.`);
}
π» Testing the Program
To test the program with different numbers, modify the value of number in the code.
121 is a palindrome number.
Run the script to check if the specified number is a palindrome.
π§ How the Program Works
- The program defines a function isPalindrome that takes a number as input and returns true if the number is a palindrome, and false otherwise.
- Replace the value of number in the main program with the desired number you want to check.
- The program calls the isPalindrome function and prints the result using console.log.
π Between the Given Range
Let's delve into the javascript code that checks for palindrome numbers in the range 100 to 200.
// Function to check if a number is palindrome
function isPalindrome(number) {
const originalNumber = number;
let reversedNumber = 0,
remainder;
while (number !== 0) {
remainder = number % 10;
reversedNumber = reversedNumber * 10 + remainder;
number = Math.floor(number / 10);
}
return originalNumber === reversedNumber;
}
// Check palindrome numbers in the range of 100 to 200
const startRange = 100;
const endRange = 200;
console.log("Palindrome Numbers in the range 100 to 200:");
for (let i = startRange; i <= endRange; i++) {
if (isPalindrome(i)) {
process.stdout.write(i + " ");
}
}
console.log();
π» Testing the Program
Palindrome Numbers in the range 100 to 200: 101 111 121 131 141 151 161 171 181 191
Run the script to see the palindrome numbers in the range of 100 to 200.
π§ How the Program Works
- The program defines a function isPalindrome that checks if a given number is a palindrome.
- Inside the function, it reverses the digits of the number and compares it with the original number.
- The main section checks for palindrome numbers in the specified range (100 to 200) and prints the results.
π§ Understanding the Concept of Odd Number
Before delving into the code, let's understand the concept of palindrome numbers. A palindrome number reads the same backward as forward.
For example, 121 is a palindrome number.
π’ Optimizing the Program
While the provided program is effective, consider exploring and implementing alternative approaches or optimizations for checking palindrome 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 Palindrome Number), please comment here. I will help you immediately.