How can I remove a specific item from an array?
Asked 07 September, 2021
Viewed 2.5K times
  • 54
Votes

I have an array of numbers and I'm using the .push() method to add elements to it.

Is there a simple way to remove a specific element from an array?

I'm looking for the equivalent of something like:

array.remove(number);

I have to use core JavaScript. Frameworks are not allowed.

30 Answer