标签: javascript numbers tofixed
我注意到,如果您在.toFixed方法之前放置一个空格字符,它将可以正常工作。我知道为什么它可以与括号(2).toFixed(2)一起使用,但是为什么它可以与空格一起使用?
.toFixed
(2).toFixed(2)
console.log(2 .toFixed(2)) // 2.00
console.log(2.toFixed(2)) // Uncaught SyntaxError: Invalid or unexpected token
请留下有关此信息的链接。谢谢。
答案 0 :(得分:2)
这只是(点)运算符之前的空白。
也许您也可以在这里看看:dot notation
console.log(2 .toFixed(2))