-2
我在javascript數組中有一大組對象。我需要找到具有相同名稱的所有重複對象。返回重複的對象,並在javascript中的位置
例如
values = [
{ name: 'Name1', index:0 },
{ name: 'Name2', index:1 },
{ name: 'Name1', index:2 },
{ name: 'Name2', index:3 },
{ name: 'Name1', index:4 },
]
我想到的是有兩個對象
values = [
{ name: 'Name1', index:2 },
{ name: 'Name2', index:3 },
{ name: 'Name1', index:4 }
]
,因爲這些都是重複一個陣列。
檢查: HTTP ://stackoverflow.com/questions/840781/easiest-way-to-find-duplicate-values-in-a-javascript-array and that: http://stackoverflow.com/questions/9229645/remove-duplicates - 從-JavaScript的一個rray – 2016-09-23 14:33:08