js计算数字长度

js计算数字长度
js调用toString方法转为字符串后取长度

var num = 123;
alert(num.toString().length);

你可能感兴趣的:(javascript)