I have an array
var array = ["google","chrome","os","windows","os"];
I want to delete the value "chrome" from the array without the array becoming a string. Is there a way to do this?
|
I have an array
I want to delete the value |
|||||||
|
|
There's no faster way than finding it and then removing it. Finding it you can do with a loop or (in implementations that support it) Live example: http://jsbin.com/anuta3/2
|
|||||||||||
|
|
This wraps it up into a convenient function:
or (for browsers that support
Edit: Fixed up with |
|||||||
|
|
The splice() method adds and/or removes elements to/from an array, and returns the removed element(s).
in your case
|
|||
|
|
|
You didn't mention whether its required to retain the indices of the remaining elements in your array or not. On the basis that you can deal with having undefined members of an array, you can do:
array[1] will then be undefined. |
|||
|
|
|
You may want to remove all of the items that match your string, or maybe remove items that pass or fail some test expression. Array.prototype.filter, or a substitute, is quick and versatile:
|
|||
|
|