Home > Web Front-end > JS Tutorial > body text

How to delete an element in an array in js

青灯夜游
Release: 2022-01-12 15:31:00
Original
23709 people have browsed it

JS method to delete an element in an array: first get the position of the specified element in the array (i.e. index index); then use the splice() function to delete the element in the array based on the index value, the syntax format is " splice(index, 1)".

How to delete an element in an array in js

The operating environment of this tutorial: Windows 7 system, ECMAScript version 5, Dell G3 computer.

First, you can define a function for the JS array object to find the position of the specified element in the array, that is, the index. The code is:

    Array.prototype.indexOf = function(val) { 
    for (var i = 0; i < this.length; i++) { 
    if (this[i] == val) return i; 
    } 
    return -1; 
    };
Copy after login

Then use to get the index of this element. , use the inherent function of the js array to delete this element:

    Array.prototype.remove = function(val) { 
    var index = this.indexOf(val); 
    if (index > -1) { 
    this.splice(index, 1); 
    } 
    };
Copy after login

Related recommendations: JavaScript video tutorial

In this way, such a function is constructed. For example, I have An array:

    var emp = [&#39;abs&#39;,&#39;dsf&#39;,&#39;sdf&#39;,&#39;fd&#39;]
Copy after login

If we want to delete the 'fd' in it, we can use:

    emp.remove(&#39;fd&#39;);
Copy after login

For more programming-related knowledge, please visit: Introduction to Programming! !

The above is the detailed content of How to delete an element in an array in js. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!