Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

remove item from array by value

var index = array.indexOf(item);
if (index !== -1) {
  array.splice(index, 1);
}
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #remove #item #array
ADD COMMENT
Topic
Name
1+9 =