Here is my object literal:
var obj = {key1: value1, key2: value2};
How can I add {key3: value3} to the object?
|
Here is my object literal:
How can I add |
|||||||||||||||||||
|
|
There are two ways to add new properties to an object:
Using dot notation:
Using square bracket notation:
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:
A real JavaScript array can be constructed using either: The Array literal notation:
The Array constructor notation:
|
|||||||||||||||
|
|
You could use either of these (provided key3 is the acutal key you want to use)
or
If key3 is a variable, then you should do:
After this, requesting |
|||||||||||||||||
|
because your arr is not really an array... It's a prototype object. The real array would be:
but it's still not right. It should actually be:
|
|||||
|
|
|
Your example shows an Object, not an Array. In that case, the preferred way to add a field to an Object is to just assign to it, like so:
|
|||
|
|
|
You can either add it this way:
or this way:
The answers suggesting keying into the object with the variable |
|||
|
|
|
In case you have multiple anonymous Object literals inside an Object and want to add another Object containing key/value pairs, do this: Firebug' the Object:
returns:
Code:
will add |
|||
|
|
|
|||||||
|