Answers for "find number of digit in javascript"

2

count the total number of digits of a number in javascript

const count = n => String((Math.abs(n))).length;

count(123); // ➞ 3
count(-45678); // ➞ 5
count(8912); // ➞ 4
Posted by: Guest on April-22-2021
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 "find number of digit in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language