JSFiddle - React, Tailwind, and code Playground
JavaScript
const test = {
a: 123,
b: {
c: 543534,
d: {
e: 7777,
},
},
};
Object.assign(test, {
b: {
d: {
e: 111,
},
},
});
console.log(test);
const test = {
a: 123,
b: {
c: 543534,
d: {
e: 7777,
},
},
};
Object.assign(test, {
b: {
d: {
e: 111,
},
},
});
console.log(test);