Underscore without union intersection difference

_.without()

_.without(array, *val);返回一个删除所有val 值得array 副本。(使用 === 做相等测试);


_.union() 数组与数组

_.union( *arrays ); 返回传入arrays 并集,按顺序返回,数组的元素是唯一的,可以传入一个会多个。

Underscore without union intersection difference

_.intersection()数组与数组

_.intersection(* arr); 返回传入 arr的交集。

Underscore without union intersection difference

_.difference()数组与数组

_.difference(arr, *others);

Underscore without union intersection difference

_.uniq() 一个数组

_.uniq(arr, [isSorted], [iterator]);

返回去重后的副本,使用 === 做相等测试。如果确定已经排序可以给isSorted 参数传true,,侧函数将运行更快的算法。 如果处理对象,iterator来获取要对比的属性。

我发现没有排序。。。。。。。。

Underscore without union intersection difference


你可能感兴趣的:(Underscore without union intersection difference)