Skip to content

Instantly share code, notes, and snippets.

@c0depanda
Last active July 19, 2018 22:11
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 c0depanda/34342d7755aaeafe2eb0932f735475af to your computer and use it in GitHub Desktop.
Save c0depanda/34342d7755aaeafe2eb0932f735475af to your computer and use it in GitHub Desktop.
let arr1 = [1, 2 , 3];
let arr2 = [0, ...arr1, 4, 5, 6];
console.log(arr2); // 0,1,2,3,4,5,6
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment