push to dictionary javascript code example

Example 1: javascript push dictionary into array

var dict = []; // create an empty array

dict.push({
    key:   "keyName",
    value: "the value"
});

Example 2: react dictionary key value avec 2 variable

var dictionary = {};//create new object
dictionary["key1"] = value1;//set key1
var key1 = dictionary["key1"];//get key1

Example 3: javascript add to a dictionary

obj["key3"] = "value3";

Example 4: javascript add to a dictionary

var d = {}

for (var i in input) {
    var datum = input[i];
    d[datum.key] = datum.val
}