add object to object javascript code example
Example 1: append object to object javascript
const originalObj = { name: 'John', age: 34 }
let newObj = { ...originalObj, city: 'New York' }
newObj = { ...newObj, language: 'en' }
Example 2: how to add property to object in javascript
var data = {
'PropertyA': 1,
'PropertyB': 2,
'PropertyC': 3
};
data["PropertyD"] = 4;
alert(data.PropertyD);
alert(data["PropertyD"]);
Example 3: how to add field to object in js
var obj = {
key1: "a",
key2: "b"
};
obj.key3 = "c";
obj["key3"] = "c";
console.log(obj)
Example 4: 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 5: 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 6: 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});