gpt4 book ai didi

javascript - Lodash - 从两个数组返回非共享元素的方法

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

Helo 伙计们,你能帮忙:

我需要一个返回 lodash 的方法:

_.method( [1,2,3,4,5,6,7], [1,2,3] ) => [4,5,6,7]

换句话说,返回非共享元素的方法。

最好的问候格雷格。

最佳答案

你可以使用 _.difference .

Creates an array of array values not included in the other given arrays using SameValueZero for equality comparisons. The order and references of result values are determined by the first array.

var result = _.difference([1, 2, 3, 4, 5, 6, 7], [1, 2, 3]);
console.log(result);
<script src="https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.15.0/lodash.min.js"></script>

关于javascript - Lodash - 从两个数组返回非共享元素的方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40264432/

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