I have two objects like that:
var obj3 = {
customer_id: 1,
products: { id: 1, name: "Car" },
};
var obj4 = {
customer_id: 1,
products: { id: 2, name: "Dress" },
};
and the expected object is:
result = {
customer_id: 1,
products: [
{ id: 1, name: "Car" },
{ id: 2, name: "Dress" },
],
};
How can i write function customizer(){}
in this situation?
Thanks so much for your help, and i'll be welcome for other solution with different way.
Merge the objects to a new object (the
{}
). Set the default values of the merged values to empty arrays. If the key isproducts
concat them. If not returnundefined
, so the standard logic of_.merge()
would be used: