_.union(arrays)
返回一个数组:所有array合并后去除重复元素(和数学上的并集很像)
var res = _.union([1, 2, 3], [101, 2, 1, 10], [2, 1]); console.log(res); //=> //[1, 2, 3, 101, 10]