一生中我无法弄清楚为什么indexOf不能在数组中找到数字。它一直返回-1。我的目标是禁止名词并将其放入禁止数组列表中,该列表必须唯一。因此,数组中的每个元素都必须不同。由于我一直保持为-1,所以我的while循环永远不会执行。

谁能告诉我我在做什么错!

if( useA < 101 && totalAs < 5){
    article1Num = 4; // A
    noun1Num = [Math.floor(Math.random() * 5)];
//^^^ random number to try use

//--------
    // Code to check if number is ban
    alert("Test Noun1Num is " + noun1Num);
    alert(bannedNounsTest.indexOf(noun1Num));
//^^^^ITS ALWAYS -1 !!!!!!! EVEN if there is a match!
    while (bannedNounsTest.indexOf(parseInt(noun1Num)) >= 0 ) {
// ^^^searching the value of the current noun in ban, -1 if none
        alert("In Loop and noun1Num is " + noun1Num);
        noun1Num = [Math.floor(Math.random() * 5)];
// ^^looking for new number not in index while
    }

//----------

bannedNounsTest.push(noun1Num); // put in ban list
    totalAs++;

最佳答案

它给出-1,因为indexOf在找不到匹配项时返回该值。 (而且不能,因为您要搜索匹配的数组和数字)

你想要的是...

noun1Num = Math.floor(Math.random() * 5);

09-25 22:22