所以有这个功能
Array.prototype.containsCaseInsensitive = function(obj) {
var i = this.length;
while (i--) {
if (this[i].toUpperCase() === obj.toUpperCase()) {
return true;
}
}
return false;
}
然后我创建这个数组:
ary = [0,1,2,3];
for (item in ary){
console.log(ary[item])
}
输出如下:
0
1
2
3
function(obj) {
var i = this.length;
while (i--) {
if (this[i].toUpperCase() === obj.toUpperCase()) {
return true;
}
}
return false;
}
为什么函数在迭代?谢谢!