gpt4 book ai didi

javascript - 类型错误 indexOf() 不是 for 循环中的函数

转载 作者:行者123 更新时间:2023-11-30 09:44:21 25 4
gpt4 key购买 nike

我看到还有其他名称相似的问题,我仔细查看了它们,它们并没有真正与我的问题相同。

出于某种原因,在我的 for 循环中调用的 indexOf() 不是函数。尝试在循环外进行测试,一切正常,所以不确定问题所在。

function sym(args) {
//new array
var newArray = [];

//loops through however many arguments are inputted
for(var i=0;i<arguments.length;i++) {
//loops through each argument array's items
for(var j=0;j<arguments[i].length;j++) {
//if the newArray array doesn't have the array item, it adds it to the new array, to avoid duplicates.
if(newArray.indexOf(arguments[i][j]) === -1) {
newArray = newArray.push(arguments[i][j]);
}
}
}
return newArray;
}

sym([1, 2, 3], [5, 2, 1, 4]);

最佳答案

newArray.push 返回被推送的数组的长度,而不是数组本身。

删除 newArray = newArray.push(arguments[i][j]); 并使其成为 newArray.push(arguments[i][j]); 并且您的错误应该会消失。

关于javascript - 类型错误 indexOf() 不是 for 循环中的函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39575495/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com