w1982
2016-04-15 17:24
javascript字符串对象和原始字符串类型有什么区别?什么时候使用高度向,什么时候用原始字符串类型
One is the object type. Another is the primitive type.
Object.prototype.toString.apply({})
返回"[object Object]"
Object.prototype.toString.apply({x:1})
返回"[object Object]"
JavaScript深入浅出
281112 学习 · 1020 问题
相似问题