javascript从数组中删除重复项

从数组中删除重复项remove duplicate items from array
代码详情
复制

let uniqueItems = [...new Set(items)]

你可能感兴趣的:(json,js)