add new item to object javascript code example
Example 1: ad data to js object
var myObject = {
sProp: 'some string value',
numProp: 2,
bProp: false
};
myObject.prop2 = 'data here';
myObject.sProp = 'A new string value for our original string property';
alert(myObject.sProp)
var val = myObject.sProp;
Example 2: 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 3: javascript add to object
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});
Example 4: add property to object javascript
let yourObject = {};
let yourKeyVariable = "yourKey";
yourObject[yourKeyVariable] = "yourValue";
yourObject["yourKey"] = "yourValue";
yourObject.yourKey = "yourValue";
Example 5: js add data in object
var element = {}, cart = [];
element.id = id;
element.quantity = quantity;
cart.push(element);
Example 6: add property with value in js
var myObject = {
sProp: 'some string value',
numProp: 2,
bProp: false
};