Skip to content

Instantly share code, notes, and snippets.

@jpetitcolas
Created November 19, 2013 08:44
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 jpetitcolas/7542241 to your computer and use it in GitHub Desktop.
Save jpetitcolas/7542241 to your computer and use it in GitHub Desktop.
Array manipulation in Javascript
// Remove an element at desired index
a.splice(desiredIndex, 1);
// Add an element at given index
a.splice(desiredIndex, 0, "My new element");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment