iT邦幫忙

2023 iThome 鐵人賽

DAY 22
0
Software Development

LELECOCODE 每一天系列 第 22

Day 22: Leetcode 小挑戰,30 Days of JavaScript

  • 分享至 

  • xImage
  •  

Day 22: Array Prototype Last

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.

Array.prototype.last = function() {
    
};

Example 1:
Input: nums = [null, {}, 3]
Output: 3
Explanation: Calling nums.last() should return the last element: 3.

Example 2:
Input: nums = []
Output: -1
Explanation: Because there are no elements, return -1.


原寫法

Array.prototype.last = function() {
    if (this.length) {
        return this[this.length-1]
    } else {
        return -1;
    };     
};

改三元

Array.prototype.last = function() {
    return this.length ? this[this.length-1] : -1
};

上一篇
Day 21: Leetcode 小挑戰,30 Days of JavaScript
下一篇
Day 23: Leetcode 小挑戰,30 Days of JavaScript
系列文
LELECOCODE 每一天30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言