Skip to content

Instantly share code, notes, and snippets.

@jlcampana
Created February 11, 2015 08:36
Show Gist options
  • Save jlcampana/21e0aa03a0a01473258b to your computer and use it in GitHub Desktop.
Save jlcampana/21e0aa03a0a01473258b to your computer and use it in GitHub Desktop.
Meter un array en medio de un array
Array.prototype.spliceArray = function(index, n, array) {
return Array.prototype.splice.apply(this, [index, n].concat(array));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment