Number(11).toString()
"11"
var num = 111;
undefined
num.toString()
"111"
111.toString()
VM234432:1 Uncaught SyntaxError: Invalid or unexpected token
原因:JavaScript的解释器把数字后的"."偷走了(作为前面数字的小数点), 类似于下面的操作:
原文链接:https://www.cnblogs.com/stella1024/p/10573109.html