Skip to content

Instantly share code, notes, and snippets.

@cryptocoderkkk
Last active September 24, 2015 11:07
Show Gist options
  • Save cryptocoderkkk/46102d8b2bfd586ea89e to your computer and use it in GitHub Desktop.
Save cryptocoderkkk/46102d8b2bfd586ea89e to your computer and use it in GitHub Desktop.
jquery append array to another array
var a = [4,5,6];
var b = [7,8,9];
Array.prototype.push.apply(a, b);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment