Skip to content

Instantly share code, notes, and snippets.

@mxhc
mxhc / jsSnippets.js
Last active April 3, 2023 20:11
js snippets
// 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);
// ********************************** //