專題文章
時(shí)長(zhǎng):00:00更新時(shí)間:2020-11-27 20:04:46
typeof運(yùn)算符;typeof會(huì)返回這個(gè)類型的字符串。var a = ';123';console.log(typeof(a)) //string var b = [] console.log(typeof(b)) //object var c = {} console.log(typeof(c)) //object var d = null console.log(typeof(d)) //object。上述看到 數(shù)組 對(duì)象 null 用typeof返回都是object 這種方法不能識(shí)別出是否為數(shù)組。原型contructor鏈方法。實(shí)例化有一個(gè)contructor屬性 這個(gè)屬性指向生成對(duì)象 數(shù)組的方法。
查看詳情