add field to existing object javascript code example
Example 1: how to add field to object in js
var obj = {
key1: "a",
key2: "b"
};
obj.key3 = "c";
obj["key3"] = "c";
console.log(obj)
Example 2: add property to object javascript
let yourObject = {};
let yourKeyVariable = "yourKey";
yourObject[yourKeyVariable] = "yourValue";
yourObject["yourKey"] = "yourValue";
yourObject.yourKey = "yourValue";
Example 3: add property with value in js
var myObject = {
sProp: 'some string value',
numProp: 2,
bProp: false
};