remove element having value code example
Example 1: js remove item from array by value
var arr = ['bill', 'is', 'not', 'lame'];
arr.splice(output_items.indexOf('not'), 1);
console.log(arr) //returns ['bill', 'is', 'lame']
Example 2: remove element from array javascript
let values = [1,2,3,4,5,7,8,9,10]
// only keep n values from an array
values.length = 5