Skip to content

Instantly share code, notes, and snippets.

@himeshvats19
Created June 26, 2019 07:14
Show Gist options
  • Save himeshvats19/34dff45648cb76263e3ce0055a426297 to your computer and use it in GitHub Desktop.
Save himeshvats19/34dff45648cb76263e3ce0055a426297 to your computer and use it in GitHub Desktop.
let arr = [1,2,3];
let arr2 = [4,5];
arr = [...arr,...arr2];
console.log(arr); // [ 1, 2, 3, 4, 5 ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment