JavaScript Array shift() Method
THE WORLD'S LARGEST WEB DEVELOPER SITE

JavaScript Array shift() Method

❮ JavaScript Array Reference

Example

Remove the first item of an array:

var fruits = ["Banana", "Orange", "Apple", "Mango"];
fruits.shift();
Try it Yourself »

Definition and Usage

The shift() method removes the first item of an array.

Note: This method changes the length of the array.

Note: The return value of the shift method is the removed item.

Tip: To remove the last item of an array, use the pop() method.


Browser Support

The numbers in the table specify the first browser version that fully supports the method.

Method
shift() Yes Yes Yes Yes Yes

Syntax

array.shift()

Parameters

None

Technical Details

Return Value: Any type*, representing the removed array item. *An array item can be a string, a number, an array, a boolean, or any other object types that are allowed in an array. Try it »
JavaScript Version: ECMAScript 1

❮ JavaScript Array Reference