Lodash _.intersectionWith

2021-09-24 09:40 更新

_.intersectionWith([arrays], [comparator])

這個(gè)方法類似_.intersection,區(qū)別是它接受一個(gè) comparator 調(diào)用比較arrays中的元素。結(jié)果值是從第一數(shù)組中選擇。comparator 會(huì)傳入兩個(gè)參數(shù):(arrVal, othVal)。

引入版本

4.0.0

參數(shù)

  1. [arrays] (...Array): 待檢查的數(shù)組。
  2. [comparator] (Function): comparator(比較器)調(diào)用每個(gè)元素。

返回值

(Array): 返回一個(gè)包含所有傳入數(shù)組交集元素的新數(shù)組。

例子

var objects = [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }];
var others = [{ 'x': 1, 'y': 1 }, { 'x': 1, 'y': 2 }];
 _.intersectionWith(objects, others, _.isEqual);
// => [{ 'x': 1, 'y': 2 }]


以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)