Adding Or Updating an Object

 let mahishmathi={

    name:"baahubali",
    age:33,
    height:"6'2ft",
    weight: 100,
    role:"prince"
};
console.log(mahishmathi);
// TO CHANGE
mahishmathi.role="king";
mahishmathi.height=6.2;

// TO ADD
mahishmathi.wife="Devasena";
console.log(mahishmathi);

Comments

Popular posts from this blog

Callback Hell

TODO list with DOM

Refactoring callback hell code