Skip to content

Instantly share code, notes, and snippets.

@woliveiras
Created January 12, 2017 10:01
Show Gist options
  • Save woliveiras/90316b35c49548b13cef8393f3c5fb14 to your computer and use it in GitHub Desktop.
Save woliveiras/90316b35c49548b13cef8393f3c5fb14 to your computer and use it in GitHub Desktop.
var arr1 = [0, 1, 2];
var arr2 = [3, 4, 5];
arr1.push(...arr2); // 6
console.log(arr1); // [0, 1, 2, 3, 4, 5]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment