JavaScript Array slice() Method
The arr. slice() method returns a new array containing a portion of the array on which it is implemented. The original remains unchanged.
Syntax:
arr.slice(begin, end)
Parameters: This method accepts two parameters as mentioned above and described below:
- begin: This parameter defines the starting index from where the portion is to be extracted. If this argument is missing then the method takes begin as 0 as it is the default start value.
- end: This parameter is the index up to which the portion is to be extracted (excluding the end index). If this argument is not defined then the array till the end is extracted as it is the default end value If the end value is greater than the length of the array, then the end value changes to the length of the array.
Return value: This method returns a new array containing some portion of the original array.
Below is an example of the Array slice() method.
Example:
JavaScript
<script> function func() { // Original Array var arr = [23,56,87,32,75,13]; // Extracted array var new_arr = arr.slice(2,4); console.log(arr); console.log("<br>"); console.log(new_arr); } func();</script> |
Output:
[23,56,87,32,75,13] [87,32]
Example 1: In this example, the slice() method extracts the entire array from the given string and returns it as the answer, Since no arguments were passed to it.
var arr = [23,56,87,32,75,13]; var new_arr = arr.slice(); console.log(arr); console.log(new_arr);
Output:
[23,56,87,32,75,13] [23,56,87,32,75,13]
Example 2: In this example, the slice() method extracts the array starting from index 2 till the end of the array and returns it as the answer.
var arr = [23,56,87,32,75,13]; var new_arr = arr.slice(2); console.log(arr); document.write(new_arr);
Output:
[23,56,87,32,75,13] [87,32,75,13]
Example 3: In this example, the slice() method extracts the array from the given array starting from index 2 and including all the elements less than the index 4.
var arr = [23,56,87,32,75,13]; var new_arr = arr.slice(2,4); console.log(arr); console.log(new_arr);
Output:
[23,56,87,32,75,13] [87,32]
The code for the above method is provided below:
Program 1:
JavaScript
<script> function func() { //Original Array var arr = [23,56,87,32,75,13]; //Extracted array var new_arr = arr.slice(); console.log(arr); console.log"<br>"); console.log(new_arr); } func();</script> |
Output:
[23,56,87,32,75,13] [23,56,87,32,75,13]
Program 2:
JavaScript
<script> function func() { //Original Array var arr = [23,56,87,32,75,13]; //Extracted array var new_arr = arr.slice(2); console.log(arr); console.log("<br>"); console.log(new_arr); } func();</script> |
Output:
[23,56,87,32,75,13] [87,32,75,13]

Formed in 2009, the Archive Team (not to be confused with the archive.org Archive-It Team) is a rogue archivist collective dedicated to saving copies of rapidly dying or deleted websites for the sake of history and digital heritage. The group is 100% composed of volunteers and interested parties, and has expanded into a large amount of related projects for saving online and digital history.

