2703. Return Length of Arguments Passed
Easy
34
13
Write a function argumentsLength that returns the count of arguments passed to it.

 

Example 1:

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

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

Example 2:

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

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

 

Constraints:

  • argsArr is a valid JSON array
  • 0 <= argsArr.length <= 100
Accepted
4.6K
Submissions
4.9K
Acceptance Rate
93.5%

Seen this question in a real interview before?
1/4
Yes
No

Discussion (0)
Copyright ©️ 2023 LeetCode All rights reserved