typeof 檢測數據類型
tyoeof null //空對象 typeof function //function
isNaN()不是一個數值的數字檢測
數組
Array.isArray(value) 個
value is instanceof Array 是不是數組的實例對象
value .constrouctor Array 這個好像是好像又不是 記不清了
object
hasOwnProperty(屬性名字) 檢測實例對象中有沒有這個屬性 不是實例的原型中
isPrototypyOf(objet) 檢測傳入的對象是不是傳入對象的原型
propertyIsEnumber(屬性) 檢測對象是否能夠枚舉 for-in遍歷
。constrouctor object 是不是一個對象實例對象
。constrouctor Date 是不是Date對象//其實其他的好像同理