标签:tle text strong 浮点数 javascrip archive htm tar 之间
1 20..toString() 等价于 20.0.toString() 2 20 .toString() 因为浮点数中数字和点之间不会有空格,所以解析的时候不会将这个点当作浮点数的点来解析 就等价于 20 调用 toString() 3 (20).toString() 将数字用括号包起来,明确了点和数字的关系,不至于发生混淆 4 20[‘toString‘]() 不符合常规写法
标签:tle text strong 浮点数 javascrip archive htm tar 之间
原文地址:https://www.cnblogs.com/linjunfu/p/10653982.html