去掉type相同的
unique(arr) {
const res = new Map();
return arr.filter((arr) => !res.has(arr.type) && res.set(arr.type, 1));
},
去掉type相同的
unique(arr) {
const res = new Map();
return arr.filter((arr) => !res.has(arr.type) && res.set(arr.type, 1));
},
本文来自博客园,作者:喆星高照,转载请注明原文链接:https://www.cnblogs.com/houxianzhou/p/13265485.html