作者热门文章
- mongodb - 在 MongoDB mapreduce 中,如何展平值对象?
- javascript - 对象传播与 Object.assign
- html - 输入类型 ="submit"Vs 按钮标签它们可以互换吗?
- sql - 使用 MongoDB 而不是 MS SQL Server 的优缺点
我有一个数组:
[
1029,
1008,
1040,
1019,
1030,
1009,
1041,
1020,
1031,
1010,
1042,
1021,
1030,
1008,
1045,
1019,
1032,
1009,
1049,
1022,
1031,
1010,
1042,
1021,
]
现在我想从中删除所有重复项。 NodeJs中是否有任何方法可以直接做到这一点。
最佳答案
不,node.js 中没有内置方法,但是在 javascript 中有很多方法可以做到这一点。你所要做的就是look around ,因为这已经回答了。
uniqueArray = myArray.filter(function(elem, pos) {
return myArray.indexOf(elem) == pos;
})
关于arrays - Node JS : How to remove duplicates from Array,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23237704/
我是一名优秀的程序员,十分优秀!