站長博客:https://www.pipipi.net/數組
存在的,本題考察的是對 == 運算符和 toString 方法的理解
代碼以下:函數
var a = {i:1,toString: function(){return a.i++;}}
if(a == 1 && a == 2 && a == 3){
console.log("執行了");
}
另外還須要注意的是,toString方法能夠用來判斷數據類型。代碼以下:.net
Object.prototype.toString.call(value)
- 數值:返回[object Number]。
- 字符串:返回[object String]。
- 布爾值:返回[object Boolean]。
- undefined:返回[object Undefined]。
- null:返回[object Null]。
- 數組:返回[object Array]。
- arguments 對象:返回[object Arguments]。
- 函數:返回[object Function]。
- Error 對象:返回[object Error]。
- Date 對象:返回[object Date]。
- RegExp 對象:返回[object RegExp]。
- 其餘對象:返回[object Object]。