[Easy] LeetCode JS 30 - 2703. Return Length of Arguments Passed (回传函式中参数的长度)

2024年3月5日

💎 加入 E+ 成長計畫 與超過 500+ 位軟體工程師一同在社群中成長,並且獲得更多的軟體工程學習資源

LeetCode 30 Days of JavaScript

本题来自 LeetCode 的 30 天 JacaScript 挑战

2703. Return Length of Arguments Passed (回传函式中参数的长度)

题目描述

实作一个 argumentsLength 函式,它会回传有多少个参数。

// 范例一
输入: args = [5]
输出: 1
解释:
argumentsLength(5); // 1

只传递了一个参数,因此它应返回1

// 范例二
输入: args = [{}, null, "3"]
输出: 3
解释:
argumentsLength({}, null, "3"); // 3

传递了三个值给函式,因此它应该传回3

本题解答

以下是本题的解答,详细解题思路可以在 E+ 成长计划看到。如果想练习更多题目,推荐可以到 GreatFrontEnd 上练习

解法

function argumentsLength(...args) {
  return args.length;
}
🧵 如果你想收到最即時的內容更新,可以在 FacebookInstagram 上追蹤我們