Skip to content

Instantly share code, notes, and snippets.

@darksh3ll
Created December 1, 2018 22:12
Show Gist options
  • Select an option

  • Save darksh3ll/08ea1c88b8d2f8cb20263db347719d16 to your computer and use it in GitHub Desktop.

Select an option

Save darksh3ll/08ea1c88b8d2f8cb20263db347719d16 to your computer and use it in GitHub Desktop.
supprimer dans un tableau avec la methode splice
function supprimer(arr,id) {
const index = arr.indexOf(id)
arr.splice(index,1)
return del
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment