gpt4 book ai didi

javascript - 查找数组中元素的最大数量

转载 作者:行者123 更新时间:2023-11-28 11:52:55 24 4
gpt4 key购买 nike

我想找到最长的数组并得到他的长度。

这是数组:

 [["667653905", "Johjn", "Smith"], ["500500500", "John", "Smith2", "Another field"], ["12342312", "asd", "asdasd", "fghfgh", "fghfgh"]]

目前我正在使用循环,但如果我有 50k 数组,这是非常慢的解决方案:

for(var i = 0; i<explode.length; i++) {
console.log(explode[i].length);
}

最佳答案

你可以使用.reduce()找到最长的数组

var longest = theArray.reduce(function(lsf, a) {
return !lsf || a.length > lsf.length ? a : lsf;
}, null);
console.log("longest array has " + longest.length + " elements");

关于javascript - 查找数组中元素的最大数量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32119889/

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