🔗LC2619 🟢 Easy 🧩 Pattern – JSON and Arrays
📅 Day 22/30 Days of JavaScript
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.
You may assume the array is the output of JSON.parse.
Example
Input: nums = [null, {}, 3]
Output: 3
Explanation: Calling nums.last() should return the last element: 3.
Input: nums = []
Output: -1
Explanation: Because there are no elements, return -1.
Code language: JavaScript (javascript)Solution
/**
* @return {null|boolean|number|string|Array|Object}
*/
Array.prototype.last = function () {
return this.length > 0 ? this[this.length - 1] : -1;
};
/**
* const arr = [1, 2, 3];
* arr.last(); // 3
*/Code language: JavaScript (javascript)