difference
_.difference(array, *others)
类似于 without,但返回的值来自 array 参数数组,并且不存在于 other 数组。
_.difference([1, 2, 3, 4, 5], [5, 2, 10]);
=> [1, 3, 4]
_.difference(array, *others)
类似于 without,但返回的值来自 array 参数数组,并且不存在于 other 数组。
_.difference([1, 2, 3, 4, 5], [5, 2, 10]);
=> [1, 3, 4]