Skip to content

Instantly share code, notes, and snippets.

@Paul-Browne
Created December 10, 2019 09:24
Show Gist options
  • Save Paul-Browne/930b977aa12239fe824c1caeb07b104f to your computer and use it in GitHub Desktop.
Save Paul-Browne/930b977aa12239fe824c1caeb07b104f to your computer and use it in GitHub Desktop.
var array1 = [1, 2, 3, 4];
var array2 = [5, 6, 7, 8];
var array3 = [9, 10, 11, 12];
var array = array1.concat(array2, array3);
console.log(array);
// [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment