Skip to content

Instantly share code, notes, and snippets.

@maciejsikora
Last active December 27, 2017 21:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save maciejsikora/f2713407ebfeb91f04396dbe84824306 to your computer and use it in GitHub Desktop.
Save maciejsikora/f2713407ebfeb91f04396dbe84824306 to your computer and use it in GitHub Desktop.
Change by using spread operator
// object
const claraFrog = { color: 'green', name: 'Clara' };
const juliaFrog = { ...claraFrog, name: 'Julia' };
// array
const week = ['monday','tuesday','wednesday','thursday','friday','saturday', 'sunday'];
const betterWeek = [...week];
betterWeek.shift(); // week without monday :)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment