lodash: Get duplicate values from an array

前端 未结 12 2216
执念已碎
执念已碎 2020-12-09 08:14

Say I have an array like this: [1, 1, 2, 2, 3]

I want to get the duplicates which are in this case: [1, 2]

Does lodash support thi

12条回答
  •  南方客
    南方客 (楼主)
    2020-12-09 08:30

    You can use this:

    _.filter(arr, (val, i, iteratee) => _.includes(iteratee, val, i + 1));
    

    Note that if a number appears more than two times in your array you can always use _.uniq.

提交回复
热议问题