lodash操作
_.union([1,2,3],[2,3,4]) // [1,2,3,4] 并集 _.intersection([1,2,3],[2,3,4]) // [2,3] 交集 _.xor([1,2,3],[2,3,4]) // [1,4] _.difference([1,2,3],[2,3,4]) // [1] 差集