标签: javascript performance
我看到这个问题 What's the best way to convert a number to a string in JavaScript?,似乎如果有一个' a' typeof number,a + ''是转换为String的最快方式。 而且我不知道为什么,因为在最后,必须使用toString来调用,并且不应该使用两个操作数的类型来检查二元运算符? 所以这里的问题
a + ''
toString
a+''