Answers for "javascript to check each digit in the number"

0

javascript to check each digit in the number

function test_same_digit(num) {
  const first = num % 10;
  while (num) {
    if (num % 10 !== first) return false;
num = Math.floor(num / 10);
  }
  return true
}

console.log(test_same_digit(1234));
console.log(test_same_digit(1111));
console.log(test_same_digit(22222222));
Posted by: Guest on May-20-2021

Code answers related to "javascript to check each digit in the number"

Code answers related to "Javascript"

Browse Popular Code Answers by Language