How to use Array slice() method In Javascript

This 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);

Example: In this example, we are using Array slice() method.

Javascript
const arr = [1, 2, 3, 4, 5, 6];

const withoutLast = arr.slice(0, -1);
//orignal array
console.log(arr);
//Modified array
console.log(withoutLast);

Output
[ 1, 2, 3, 4, 5, 6 ]
[ 1, 2, 3, 4, 5 ]

How to remove n elements from the end of a given array in JavaScript ?

In this article, we will learn how to remove the last n elements from the end of the given array in JavaScript.

We can remove n elements from the end of a given array in the following ways:

Table of Content

  • Method 1: Using splice() Method
  • Method 2: Using pop() Method
  • Method 3: Using filter() Method
  • Method 4: Using Array slice() method
  • Method 5: Using while loop

Similar Reads

Method 1: Using splice() Method

It is used to modify an array by adding or removing elements from it. This method accepts the index from which the modification has to be made and the number of elements to delete. The index from which the deletion has to start can be found by subtracting the number of elements from the length of the array....

Method 2: Using pop() Method

It is used to remove the last element from the array. This can be repeated in a loop of n iterations to remove the last n elements of the array using the while loop....

Method 3: Using filter() Method

It is used to filter the array and apply the callback function to each item of the array and filter the element which returns true against the callback function....

Method 4: Using Array slice() method

This method returns a new array containing a portion of the array on which it is implemented. The original remains unchanged....

Method 5: Using while loop

By using the while loop we can iterate over the array and we will use pop() method for removing the element from the end....

Contact Us