最推荐的判断一个变量是否是String的方法是:
var a = "a"; Object.prototype.toString.call(a) === "[object String]"
为什么不用 typeof:
因为一个通过原始函数构造的string在typeof时 值为object;
var a = new String("a"); typeof a ;//object
最推荐的判断一个变量是否是String的方法是:
var a = "a"; Object.prototype.toString.call(a) === "[object String]"
为什么不用 typeof:
因为一个通过原始函数构造的string在typeof时 值为object;
var a = new String("a"); typeof a ;//object
本文标题:String 的类型判断
本文链接:https://www.haomeiwen.com/subject/qabupttx.html
网友评论