add key to json object javascript code example
Example 1: how to add element in json object
// base code ----------------------------------------------------------
object["property"] = value;
// or
object.property = value;
// exampel : ----------------------------------------------------------
var myJson = { name: "mamad", family: "mirzaei" }
// i wana to add age
myJson.age = 26
// log =>
console.log( "myJson >>:" ,myJson)
// resalt =>
{ name: "Mamad", family: "Mirzaei", age : 26 }
Example 2: add new element to existing json object
json = JSON.stringify(jsObj);
console.log(json)