Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save nickforce/f3bd1c370db22f305f78cd2225f75332 to your computer and use it in GitHub Desktop.
Save nickforce/f3bd1c370db22f305f78cd2225f75332 to your computer and use it in GitHub Desktop.
Array Prototype Last (leetcode)
Array.prototype.last = function() {
if(!this?.length) return -1;
return this.pop();
};
/**
* const arr = [1, 2, 3];
* arr.last(); // 3
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment