Here is my object literal:
var obj = {key1: value1, key2: value2};
How can I add field key3
with value3
to the object?
To conditionally add a property to an object, we can make use of the && operator. In the example above, in the first property definition on obj , the first expression ( trueCondition ) is true/truthy, so the second expression is returned, and then spread into the object.
There are two ways to add new properties to an object:
var obj = { key1: value1, key2: value2 };
obj.key3 = "value3";
obj["key3"] = "value3";
The first form is used when you know the name of the property. The second form is used when the name of the property is dynamically determined. Like in this example:
var getProperty = function (propertyName) { return obj[propertyName]; }; getProperty("key1"); getProperty("key2"); getProperty("key3");
A real JavaScript array can be constructed using either:
var arr = [];
var arr = new Array();
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With