Skip to content

Latest commit

 

History

History
12 lines (10 loc) · 258 Bytes

File metadata and controls

12 lines (10 loc) · 258 Bytes

LeetCode Records - Question 2703 Return Length of Arguments Passed

Attempt 1:

var argumentsLength = function(...args) {
    return args.length;
};
  • Runtime: 43 ms (Beats: 92.33%)
  • Memory: 48.84 MB (Beats: 41.51%)