Check whether sum of digit of a number is Palindrome - JavaScript


We are required to write a JavaScript function that takes in a number, sums its digits and checks whether that sum is a Palindrome number or not. The function should return true if the sum is Palindrome, false otherwise.

For example, if the number is 697, then the sum of its digit will be 22, which indeed, is a Palindrome number.

Therefore, our function should return true for 697.

Example

Following is the code −

const num = 697;
const sumDigit = (num, sum = 0) => {
   if(num){
      return sumDigit(Math.floor(num / 10), sum + (num % 10));
   };
   return sum;
};
const isPalindrome = num => {
   const revered = +String(num)
   .split("")
   .reverse()
   .join("");
   return revered === num;
};
const isSumPalindrome = num => isPalindrome(sumDigit(num));
console.log(isSumPalindrome(num));

Output

Following is the output in the console −

true

Updated on: 15-Sep-2020

455 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements