Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save DoctorDerek/a9b8d36bb623d6b7712521eeb85a16e6 to your computer and use it in GitHub Desktop.

Select an option

Save DoctorDerek/a9b8d36bb623d6b7712521eeb85a16e6 to your computer and use it in GitHub Desktop.
Method 2 - The ... Spread Operator
// Joining Two Arrays with ... Spread
const array1 = ["🎅", "🤶"]
const array2 = ["👩‍🚀", "👨‍🚀"]
// Use ... spread to join the arrays:
console.log([...array1, ...array2])
// Spread won't change either array:
console.log(array1)
console.log(array2)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment