Skip to content

Instantly share code, notes, and snippets.

@mkuklis
Last active December 15, 2015 10:59
Show Gist options
  • Save mkuklis/5249966 to your computer and use it in GitHub Desktop.
Save mkuklis/5249966 to your computer and use it in GitHub Desktop.
array splice
var splice = Array.prototype.splice;
function arraySplice(array1, array2) {
return splice.apply(array1, [0, array2.length].concat(array2));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment