Is there a strategy to eliminate an item from a JavaScript array?
Given an array:
var ary = ['three', 'seven', 'eleven'];
I might want to accomplish something like:
removeItem('seven', ary);
I've investigated splice() yet that solitary eliminates by the position number, though I need something to eliminate an item by its value.