iT邦幫忙

2023 iThome 鐵人賽

DAY 9
0
Software Development

LELECOCODE 每一天系列 第 9

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

  • 分享至 

  • xImage
  •  

Day 9: Return Length of Arguments Passed

Write a function argumentsLength that returns the count of arguments passed to it.

var argumentsLength = function(...args) {
 
};

Example 1:
Input: argsArr = [5]
Output: 1

Example 2:
Input: argsArr = [{}, null, "3"]
Output: 3


var argumentsLength = function(...args) {
  return args.length;
};

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

尚未有邦友留言

立即登入留言