Skip to content

Instantly share code, notes, and snippets.

@kfiil
Created July 22, 2014 06:49
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 kfiil/3cc415fd0d8cead80df7 to your computer and use it in GitHub Desktop.
Save kfiil/3cc415fd0d8cead80df7 to your computer and use it in GitHub Desktop.
Remove specific element from an array in #JavaScript
//Credit http://stackoverflow.com/a/5767357
var array = [2, 5, 9];
var index = array.indexOf(5);
if (index > -1) {
array.splice(index, 1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment