だから、この機能があります
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;
}
関数が反復にあるのはなぜですか? ありがとう!