gpt4 book ai didi

javascript - 比较两个数组并将公共(public)对象添加到新数组

转载 作者:行者123 更新时间:2023-12-02 16:57:59 25 4
gpt4 key购买 nike

我得到了这个代码:

var counter = 0,
randoms = [],
randoms1 = [],
n;

for (n = 0; n < 5; n++) {
randoms.push(Math.floor(Math.random() * 49 + 1));
randoms1.push(Math.floor(Math.random() * 49 + 1));
}

对于这两个数组,我如何检查它们中是否有共同的数字,并将该数字添加到新数组中?

最佳答案

循环其中一个数组并检查:

var matches = [];
for (var i = 0; i < randoms.length; i++) {
if (randoms1.indexOf(randoms[i]) > -1) matches.push(randoms[i]);
}

关于javascript - 比较两个数组并将公共(public)对象添加到新数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26021064/

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