Skip to content

Instantly share code, notes, and snippets.

@ABIDULLAH786
Created August 3, 2023 14:19
Show Gist options
  • Save ABIDULLAH786/d0bee8e9f9e2b299fb3a3a75a6a61e9d to your computer and use it in GitHub Desktop.
Save ABIDULLAH786/d0bee8e9f9e2b299fb3a3a75a6a61e9d to your computer and use it in GitHub Desktop.
// Longhand
const user = { name: 'John', age: 30 };
const updatedUser = Object.assign({}, user, { age: 31 });
// Shorthand
const user = { name: 'John', age: 30 };
const updatedUser = { ...user, age: 31 };
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment