I have an array that looks like this:
[
{
like_id: 1,
likes: 1,
post_id: 1,
type: "feed_post_likes",
_id: "b51771798ed01795cb8a17b028000329"
},
{
post_id: 1,
created_date: "2021-03-10T10:54:35.264Z",
post_message: "Happy",
post_pic: "",
post_type: "post"
}
]
I need to merge these array based on post_id and get this:
[
{
like_id: 1,
likes: 1,
post_id: 1,
type: "feed_post_likes",
_id: "b51771798ed01795cb8a17b028000329",
created_date: "2021-03-10T10:54:35.264Z",
post_message: "Happy",
post_pic: "",
post_type: "post"
}
]