I have two array of objects and I want to get a new one which is combination of those two.
const all_products = [
{
id : 1,
name : "Coca Cola",
price : 12.34
},
{
id : 2,
name : "Marbo Chips",
price : 8.34
},
{
id : 3,
name : "Seven Days",
price : 4.34
},
{
id : 4,
name : "Lays",
price : 32.34
},
{
id : 5,
name : "Pringles",
price : 2.34
}
];
And this one:
const shopping_cart = [
{
id : 1,
qty : 4
},
{
id : 5,
qty : 2
}
];
I want to filter through all_products array by comparing if id's are the same and want to add qty to that object and get this
new_arr = [
{
id: 1,
name: "Coca Cola",
price: 12.34,
qty: 4
}, {
id: 5,
name: "Pringles",
price: 2.34,
qty: 2
}]
I've succeeded by using this
const test = [];
for( let one_product of all_products ) {
for( let sc_item of shopping_cart ){
if(one_product.id === sc_item.id){
let it = {
...one_product,
qty : sc_item.qty
}
test.push(it);
}
}
}
But I want to do this by using js array functions like filter,some,reduce etc.