JavaScript中如何檢測一個變量是一個String類型?

1 typeof x === "string" 2 typeof(x) === "string' // 小寫 3 x.constructor === String // 大寫類型

同理:Number, Boolean Function 類型也能夠這樣檢測函數

注意:object不一樣this

var obj = { 'age':19, 'put':function(){ return 0; } }

這樣定義的對象與前面規則同樣spa

 var Obj = function(){ this.age = 12; this.put = function(){ return 0; } } var obj = new Obj; typeof obj = "object"

經過構造函數構建對象,obj.constructor = ƒ Function() { [native code] }      typeof obj = "object"code

因此Object類型檢測要注意構造方法。對象

相關文章
相關標籤/搜索