leetcode 30 days js challenge
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:
Example 2:
Constraints:
0 <= arr.length <= 1000
0 <= arr[i] <= 1000
SheepSat, May 27, 2023