mirror of
https://github.com/devenperez/leetcode.git
synced 2026-06-13 14:57:08 +00:00
11 lines
212 B
JavaScript
11 lines
212 B
JavaScript
/**
|
|
* @return {null|boolean|number|string|Array|Object}
|
|
*/
|
|
Array.prototype.last = function() {
|
|
return this.length === 0 ? -1 : this[this.length - 1]
|
|
};
|
|
|
|
/**
|
|
* const arr = [1, 2, 3];
|
|
* arr.last(); // 3
|
|
*/ |