Skip to content

Instantly share code, notes, and snippets.

@aderaaij
Last active July 25, 2018 09:27
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aderaaij/13f737d5630db2e1cf46a9fbe0fccb9f to your computer and use it in GitHub Desktop.
Save aderaaij/13f737d5630db2e1cf46a9fbe0fccb9f to your computer and use it in GitHub Desktop.
The spread operator can expand(spread) any iterable like an array or a string.
const avengers = ['Thor', 'The Hulk', 'Captain America'];
let guardians = ['Star Lord', 'Gamorra', 'Drax', 'Rocket', 'Groot'];
// Spread out arrays in a new array and put a new value in between them
const heroes = [...avengers, 'Loki', ...guardians];
// Adding new stuff to an array just got easier too
guardians = [...guardians, 'Mantis', 'Yondu', 'Nebula'];
// Or simply making a TRUE copy of an array
const avengersCopy = [...avengers];
// We can also get everything out of an array in an object
const xmen = {
team: 'Marvel',
leader: 'Xavier',
members: ['Jean Grey', 'Cyclopse', 'Beast', 'Gambit', 'Rogue', 'Wolverine'],
}
// This creates another true copy of the Array with new values in it.
const xMenSpecial = ['Gambit', 'Mystique', 'Magneto', ...xmen.members];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment