.indexOf を使用して、配列に文字列が含まれているかどうかを調べようとしています。何かがエラーを引き起こしていますが、何が原因かわかりません。これは本当に単純なことだと思いますが、私はその言語を知らないのでわかりません。どうしたの?
//this code creates an error in IE
var myMines=new Array();
var newMine="22";
var myVar = myMines.indexOf(newMine); //when I comment out this line, the page does not generate an error