Splice in JavaScript is mainly used to operate arrays in js, including deleting, adding, and replacing arrays. This article describes the detailed usage of the splice method in JavaScript. For more information, see splice in JavaScript. It is mainly used to operate arrays in js, including deleting and adding, replacement.
Note: This method will change the original array !.
1. Delete-used to delete an element. There are two parameters: the first parameter (the location of the first item to be deleted) and the second parameter (number of items to be deleted)
2. Insert-insert any element to the specified position of the array. Three parameters: the first parameter (insert position), the second parameter (0), and the third parameter (insert item)
3. replace-insert any element to the specified position of the array, and delete any number of items, three parameters. The first parameter (start position), the second parameter (number of deleted items), and the third parameter (insert any number of items)
Example:
1. delete function. The first parameter is the first parameter and the second parameter is the number of parameters to be deleted.
Array. splice (index, num). The returned value is the deleted content, and array is the result value.
Eg:
Script var array = ['A', 'B', 'C', 'D']; var removeArray = array. splice (); alert (array); // pop up c, dalert (removeArray); // the return value is the delete item, that is, the and B scripts
2. Insert function: the first parameter (insert position), the second parameter (0), and the third parameter (insert item)
Array. splice (index, 0, insertValue), return value is an empty array, array value is the final result value
Eg:
Script var array = ['A', 'B', 'C', 'D']; var removeArray = array. splice (, 'insert'); alert (array); // Pop Up a, insert, B, c, dalert (removeArray); // pop up empty script
3. replacement function: the first parameter (start position), the second parameter (number of deleted items), and the third parameter (insert any number of items)
Array. splice (index, num, insertValue). The returned value is the deleted content, and array is the result value.
Eg:
Script var array = ['A', 'B', 'C', 'D']; var removeArray = array. splice (, 'insert'); alert (array); // Pop Up a, insert, c, dalert (removeArray); // pop up B script
The above is a detailed explanation of the usage of the splice method in JavaScript. I hope it will help you. If you have any questions, please leave a message and I will reply to you in a timely manner. I would like to thank you for your support for PHP chinnet!
For more details about how to use the splice method in JavaScript, refer to the PHP Chinese website!