const array = [1, 2, 3, 3, 5, 5, 1];const uniqueArray = [...new Set(array)]; console.log(uniqueArray); // [1, 2, 3, 5]
本文共 171 字,大约阅读时间需要 1 分钟。
const array = [1, 2, 3, 3, 5, 5, 1];const uniqueArray = [...new Set(array)]; console.log(uniqueArray); // [1, 2, 3, 5]
转载于:https://www.cnblogs.com/neo-java/p/11377770.html