我需要一个接收数组并返回包含所有重复项的数组的函数。如果可能的话,我更喜欢使用下划线。
给定数组:
[
"apple",
"apple",
"pear",
"pear",
"kiwi",
"peach"
]
我需要返回一个数组
[
"apple",
"pear"
]
我发现的许多方法将返回一个布尔值,而不是一个重复的数组。
例如
var fruits = ["apple","apple"];
var uniq_fruits = _.uniq(fruits);
var duplicates_exist = (fruits.length == uniq_fruits.length);