gpt4 book ai didi

arrays - Node JS : How to remove duplicates from Array

转载 作者:IT老高 更新时间:2023-10-28 22:11:05 32 4
gpt4 key购买 nike

我有一个数组:

[
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/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com