how to writh in html js object key and values code example
Example 1: how to add field to object in js
// original object { key1: "a", key2: "b"}
var obj = {
key1: "a",
key2: "b"
};
// adding new filed - you can use 2 ways
obj.key3 = "c"; // static
// or
obj["key3"] = "c"; // dynamic - 'key3' can be a variable
console.log(obj) // {key1: "a", key2: "b", key3: "c" }
Example 2: objects in javascript
let object = {
'key1': 'value1',
'key2': 'value2',
'keyn': 'valuen',
};
console.log(object);