JS menambahkan data dalam objek

var element = {}, cart = [];
element.id = id;
element.quantity = quantity;
cart.push(element);
Wandering Walrus