Home  >  Article  >  Web Front-end  >  javascript Array.remove() array deletion_javascript skills

javascript Array.remove() array deletion_javascript skills

WBOY
WBOYOriginal
2016-05-16 18:48:281529browse
Copy code The code is as follows:

Array.prototype.remove = function(b) {
var a = this.indexOf(b);
if (a >= 0) {
this.splice(a, 1);
return true;
}
return false;
};


In future use, you can directly use this function to delete the values ​​in the array.
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