JavaScript Array splice() Method
Below is the example of Array splice() method.
Example:
Javascript
<script> var webDvlop = [ "HTML" , "CSS" , "JS" , "Bootstrap" ]; document.write(webDvlop + "<br>" ); // Add 'React_Native' and 'Php' after removing 'JS'. var removed = webDvlop.splice(2, 1, 'PHP' , 'React_Native' ) document.write(webDvlop + "<br>" ); document.write(removed + "<br>" ); // No Removing only Insertion from 2nd // index from the ending webDvlop.splice(-2, 0, 'React' ) document.write(webDvlop) </script> |
Output:
HTML,CSS,JS,Bootstrap HTML,CSS,PHP,React_Native,Bootstrap JS HTML,CSS,PHP,React,React_Native,Bootstrap
The arr.splice() method is an inbuilt method in JavaScript which is used to modify the contents of an array by removing the existing elements and/or by adding new elements.
Syntax:
Array.splice( index, remove_count, item_list )
Parameter: This method accepts many parameters some of them are described below:
- index: It is a required parameter. This parameter is the index which start modifying the array (with origin at 0). This can be negative also, which begins after that many elements counting from the end.
- remove_count: The number of elements to be removed from the starting index.
- items_list: The list of new items separated by comma operator that is to be inserted from the starting index.
Return Value: While it mutates the original array in-place, still it returns the list of removed items. In case there is no removed array it returns an empty array.
Below example illustrates the Array.splice() method in JavaScript:
Example:
Javascript
<script> var languages = [ 'C++' , 'Java' , 'Html' , 'Python' , 'C' ]; document.write(languages + "<br>" ); // Add 'Julia' and 'Php' after removing 'Html'. var removed = languages.splice(2, 1, 'Julia' , 'Php' ) document.write(languages + "<br>" ); document.write(removed + "<br>" ); // No Removing only Insertion from 2nd index from the ending languages.splice(-2, 0, 'Pascal' ) document.write(languages) </script> |
Output:
C++,Java,Html,Python,C C++,Java,Julia,Php,Python,C Html C++,Java,Julia,Php,Pascal,Python,C
Supported Browser:
- Google Chrome 1 and above
- Internet Explorer 5.5 and above
- Firefox 1 and above
- Opera 4 and above
- Safari 1 and above