Sprawdź, czy numer to jednocyfrowy JavaScript
function hasOneDigit(val) {
return String(Math.abs(val)).charAt(0) == val;
}
console.log(hasOneDigit(1)); // true
console.log(hasOneDigit(12)); // false
Wissam