Skip to content

Instantly share code, notes, and snippets.

@guillefd
Created February 1, 2018 02:11
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 guillefd/a2d3a5d9378a4dc1ae993e99eb1a729a to your computer and use it in GitHub Desktop.
Save guillefd/a2d3a5d9378a4dc1ae993e99eb1a729a to your computer and use it in GitHub Desktop.
Javascript Array: find item index and remove from Array
function findAndRemove(array, item) {
const index = array.indexOf(item);
if(index>-1) {
array.splice(index, 1);
}
return array;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment