How to Remove Specific Value from Array?
var arr = [1, 2, 3, 4, 5];
var removeItem = 2;
arr = $.grep(arr, function(value) {
return value != removeItem; });
by Subbu ·
Tags: How to Remove Specific Value from Array
by Subbu · Published June 20, 2013 · Last modified June 29, 2013
by Subbu · Published August 19, 2013
by Subbu · Published March 6, 2013
More