Skip to content

Instantly share code, notes, and snippets.

@searleb
Created August 11, 2017 00:55
Show Gist options
  • Save searleb/cd844658a1d45e81ca2746394b9a8722 to your computer and use it in GitHub Desktop.
Save searleb/cd844658a1d45e81ca2746394b9a8722 to your computer and use it in GitHub Desktop.
Remove Item From Array
function removeItem(array, action) {
const actionIndex = array.indexOf(action)
const newArray = array.slice()
newArray.splice(actionIndex, 1)
return newArray
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment