function myCheck(x) {
var n = parseInt(x, 10); // приводим к числу
console.log('n = ', n);
if (isNaN(n)) {
console.log(x, ' - вообще не число')
} else {
var length = n.toString().length
console.log('length =', length)
}
}
myCheck(42);
myCheck('08');
myCheck('hello world');
https://jsfiddle.net/343030dp/