add item to json java script 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 to json object javascript
object.property = value;