javascript add item in a object code example
Example 1: adding element to javascript object
let person = {
name : 'John Doe',
age : 35
}
person.occupation = 'Web Designer'
person['occupation'] = 'Web Designer';
object[yourKey] = yourValue;
object.yourKey = yourValue;
Example 2: how to add items to object in javascript
var element = {}, cart = [];
element.id = id;
element.quantity = quantity;
cart.push(element);
var element = {}, cart = [];
element.id = id;
element.quantity = quantity;
cart.push({element: element});