This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// state updates: https://state-updates.vercel.app | |
// cheat sheet: https://turriate.com/articles/modern-javascript-everything-you-missed-over-10-years | |
// ********************************** // | |
// create new object from existing one | |
const object = { id: 1, title: 'some-title', text: 'some text' }; | |
const newObject = { ...object, text: 'changed text' }; | |
console.log(newObject); | |
// ********************************** // |