Open In App

Javascript Array at() Method

Last Updated : 14 Jul, 2024
Summarize
Comments
Improve
Suggest changes
Share
4 Likes
Like
Report

The JavaScript Array at() method takes an integer value (index) as a parameter and returns the element of that index. It allows positive and negative integers. For the negative integer, it counts back from the last element in the array.

Syntax:

at(index);

Parameter: This method accepts one parameter that are described below:

  • index: This parameter specifies the array index of the element. The negative index value counts back from the end of array.

Return Value: The element corresponding to the specified index in the array. It returns undefined value if we access index < 0, or index + array.length.

Javascript Array at() Method Examples

Example 1: This code shows the value extracted at the given index.


Output
21

Example 2: It will provide a function that returns the last element found in a specified array.


Output
Chemistry
DSA

Example 3: This code shows the value extracted from the Nested Array.


Output
27

Supported Browsers:


Next Article

Similar Reads