I have 2 arrays.
JavaScript
x
3
1
array1 = [1, 2, 3]
2
array2 = [{id:1}, {id:1}, {id:3}]
3
I want to get an array of objects with same id. Like when I go get all the object of 1 then I will loop through array2 and get the object then put them in a 3rd array.
I’m stuck at this point.
Update:
Thanks to flyingfox for solving my issue. But I see that if i have duplicate value in array1 the array2 doenst include it multiple time.
JavaScript
1
10
10
1
let array1 = [1, 3, 3, 3]
2
let array2 = [{id:1}, {id:2},{id:3}]
3
4
array1 = array1.filter(e1 => array2.some(e2 => e2.id === e1))
5
array2 = array2.filter(e1 => array1.some(e2 => e2 === e1.id))
6
7
here array2=[{id:1}, {id:3}]
8
But I want to get the duplicate as well.
9
Like array2=[{id:1}, {id:3}, {id:3}, {id:3}] as array1 has 3 multiple time
10
Advertisement
Answer
If you just want to put all elements with same id into a new array,then below is a reference for you
JavaScript
1
8
1
let array1 = [1, 2, 3]
2
let array2 = [{id:1}, {id:1}, {id:3},{id:4}]
3
4
array1 = array1.filter(e1 => array2.some(e2 => e2.id === e1))
5
array2 = array2.filter(e1 => array1.some(e2 => e2 === e1.id))
6
7
let array3 = [array1,array2]
8
console.log(array3)