I have an array of numbers and I'm utilizing the 
.push() strategy to add elements to it. 
Is there a straightforward method to eliminate a particular element from an array? 
I'm searching for what could be compared to something like:
array.remove(number);
I need to utilize core JavaScript. Frameworks are not permitted.