js怎样让两个数组中相同的数只输出一次?
把两个数组合并到一个新的数组里。去重输出可好?
var a = [1, 2, 3, 4, 5];
var b = [2, 4, 6, 7, 8];$.merge(a,b);
console.log($.unique(a));