Skip to content

Instantly share code, notes, and snippets.

@himeshvats19
Created June 26, 2019 07:13
Show Gist options
  • Save himeshvats19/8aa0e27823359dcc8d9a44d5dcb57d9b to your computer and use it in GitHub Desktop.
Save himeshvats19/8aa0e27823359dcc8d9a44d5dcb57d9b to your computer and use it in GitHub Desktop.
let arr = [1,2,3];
let arr2 = [4,5];
arr = arr.concat(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