I have an array of integers, 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? The equivalent of something like array.remove(int);
.
I have to use core JavaScript - no frameworks are allowed.