Skip to content

Instantly share code, notes, and snippets.

@tkheyfets
Last active April 8, 2016 13:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tkheyfets/83734be7476c32da38de to your computer and use it in GitHub Desktop.
Save tkheyfets/83734be7476c32da38de to your computer and use it in GitHub Desktop.
Array insert
function insert(item, index, array) {
array.splice(index, 0, item);
return array;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment