Skip to content

Latest commit

 

History

History
12 lines (10 loc) · 274 Bytes

File metadata and controls

12 lines (10 loc) · 274 Bytes

LeetCode Records - Question 2619 Array Prototype Last

Attempt 1:

Array.prototype.last = function() {
    return this.length === 0 ? -1 : this[this.length - 1];
};
  • Runtime: 39 ms (Beats: 97.58%)
  • Memory: 48.59 MB (Beats: 68.14%)