Home  >  Article  >  Web Front-end  >  JavaScript method to delete elements with specified value from array

JavaScript method to delete elements with specified value from array

巴扎黑
巴扎黑Original
2016-12-06 11:18:26899browse

The following code uses two methods to delete elements of the array. The first one defines a separate function, and the second one defines a removeByValue method for the Array object.

Js code

function removeByValue(arr, val) {  
  for(var i=0; i

Add the corresponding method to the array object Method

Js code

Array.prototype.removeByValue = function(val) {  
  for(var i=0; i


Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn