I am a Developer, Blogger and Coffee addict. Java developer by profession, Q2A developer by addiction. This is my personal website where I write few stuff which could be useful for other developers.
© 2020. All rights reserved.
const updateObj = (oldObject, newObject) => { return { ...oldObject, ...newObject }; }; // usage let obj = { key1: "value1", key2 : "value2" }; obj = updateObj(obj, { key2 : "value3" }); console.log(obj); // {key1: "value1", key2: "value3"}