gpt4 book ai didi

Javascript 比较两个数组中的值

转载 作者:行者123 更新时间:2023-11-29 19:44:43 25 4
gpt4 key购买 nike

什么是更短的写法:

if (array1[0] >= array2[0] && array1[1] >= array2[1] && ...) {
do something;
}

我尝试创建一个函数,但我无法让它工作,我在这方面还很陌生。

最佳答案

最优雅的方式是使用 .every

The every() method tests whether all elements in the array pass the test implemented by the provided function.

if (array1.every(function(e,i){ return e>=array2[i];})) {
do something;
}

关于Javascript 比较两个数组中的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20569353/

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