Skip to content

Files

Latest commit

6d99780 · Oct 17, 2023

History

History

2619-array-prototype-last

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
May 29, 2023
May 29, 2023
Oct 17, 2023

Easy


Write code that enhances all arrays such that you can call the array.last() method on any array and it will return the last element. If there are no elements in the array, it should return -1.

 

Example 1:

Input: nums = [1,2,3]
Output: 3
Explanation: Calling nums.last() should return the last element: 3.

Example 2:

Input: nums = []
Output: -1
Explanation: Because there are no elements, return -1.

 

Constraints:

  • 0 <= arr.length <= 1000
  • 0 <= arr[i] <= 1000