1、使用 Set 对象
const array = [1, 2, 2, 3, 4, 4, 5];
const uniqueArray = [...new Set(array)];
2、使用 Array.from() 结合 Set
const array = [1, 2, 2, 3, 4, 4, 5];
const uniqueArray = Array.from(new Set(array));
3、使用 filter() 方法
filter()可检查每个元素的索引是否是其第一次出现的位置
const array = [1, 2, 2, 3, 4, 4, 5];
const uniqueArray = array.filter((item, index, self) => self.indexOf(item) === index);
4、使用 reduce() 方法
filter()可检查每个元素的索引是否是其第一次出现的位置
const array = [1, 2, 2, 3, 4, 4, 5];
const uniqueArray = array.reduce((acc, current) => {
if (!acc.includes(current)) {
acc.push(current);
}
return acc;
}, []);
5、使用 Map 数据结构
filter()可检查每个元素的索引是否是其第一次出现的位置
const array = [1, 2, 2, 3, 4, 4, 5];
const uniqueArray = Array.from(new Map(array.map(item => [item, item])).values());