Skip to content

Files

Latest commit

54c4475 · Sep 27, 2023

History

History
56 lines (39 loc) · 1.22 KB

File metadata and controls

56 lines (39 loc) · 1.22 KB

中文文档

Description

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

 

Example 1:

Input: args = [5]
Output: 1
Explanation:
argumentsLength(5); // 1

One value was passed to the function so it should return 1.

Example 2:

Input: args = [{}, null, "3"]
Output: 3
Explanation: 
argumentsLength({}, null, "3"); // 3

Three values were passed to the function so it should return 3.

 

Constraints:

  • args is a valid JSON array
  • 0 <= args.length <= 100

Solutions

TypeScript

function argumentsLength(...args: any[]): number {
    return args.length;
}

/**
 * argumentsLength(1, 2, 3); // 3
 */