

We will see in the below article regarding the uses of the slice() method on array in javascript. This method is used in many different ways. It can be seen in the statement article.slice(1,3) this means that the given array with name “article” has 5 elements and the indexing starts from 0 in the above statement we can see the start parameter has index 1 and end parameter has the index 3 which says it will select the second and third element from the given array.Īs we know slice() method is used for slicing the part of the given array without changing the original array.

Var article = ĭocument.getElementById("arr_slice").innerHTML = heading Įxplanation: In the above program, we can see we are selecting the second and third elements of the given array using the slice() method.

Example #1Ĭlick the button below to select the second and the third elements from the array and print. Similarly, if the end parameter is not defined then the slice() method will extract up to end-1 which means it will use the length or size of the array for end parameter. We should also note that in the slice() method if the start parameter is not defined then slicing begins from the index 0 of the array and therefore this start parameter identifies the zero-based index of the array. This method returns a new array that contains the selected elements of the array.

In this section, we will see how the slice() method works on array in javascript. Working of Array slice() Method in JavaScript with Examples Thus the new selected elements of the array are copied to a new array. In javascript, there is a method known as the slice() method for selecting part of the given elements and return this as a new array object without changing the original array. An array slice is a method of slicing the given array to obtain part of the array as a new array. An array is used to store a collection of items or data with similar data types or an array can be defined in simple words as a group of elements having the same data type. In this article, we will discuss the array slicing method in javascript.
