typeof和instanceof 运算符
生活随笔
收集整理的這篇文章主要介紹了
typeof和instanceof 运算符
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
instanceof運算符與typeof運算符相似,都適用于檢測數據類型,但是在具體細節方面還是不同的
使用typeof測試數據類型
typeof 12;//"number" typeof "12";//"string" typeof false;//"boolean" typeof null;//"object" typeof undefined;//"undefined"function f() {} typeof f"function"typeof {};//"object" typeof [];//"object" typeof null;//"object" typeof window;"object"從上面的地結果可以看出來,無論引用的是什么類型的對象,它都返回 "object"。 如果想要知道對象是什么具體類型該怎么辦呢?
運算符 instanceof 可以解決這個問題,與 typeof 方法不同的是,instanceof 方法要求開發者明確地確認對象為某特定類型。
實例:
var oStringObject = new String("hello world"); alert(typeof(oStringObject)); //輸出 "object" alert(oStringObject instanceof String); //輸出 "true"結論:如果變量是基本數據類型,使用typeof非常方便,但是要知道object對象的具體引用類型就需要使用instanceof了
轉載于:https://www.cnblogs.com/YeChing/p/6243744.html
總結
以上是生活随笔為你收集整理的typeof和instanceof 运算符的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: codevs 1082 线段树区间求和
- 下一篇: js typeof