📌  相关文章
📜  在数组上查找唯一值 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:03:15.258000             🧑  作者: Mango

代码示例1
const a = [1, 9, 2, 2, 3, 4, 1, 7, 8, 0, 9, 0, 1, 5, 3];

const b = a.filter(function (item, index, array) {
    return array.lastIndexOf(item) === index; // this will return the unique elements
});