File tree 2 files changed +10
-0
lines changed
paginated_contents/javascript
2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change
1
+ /**
2
+ * @param {...(null|boolean|number|string|Array|Object) } args
3
+ * @return {number }
4
+ */
5
+ var argumentsLength = function ( ...args ) {
6
+ return args . length ;
7
+ } ;
Original file line number Diff line number Diff line change
1
+ | # | Title | Solutions | Video | Difficulty | Tag
2
+ |------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------|--------------------------------------|------------------------------------------|----------------------------------------------------------------------
3
+ | 2703 | [ Return Length of Arguments Passed] ( https://leetcode.com/problems/return-length-of-arguments-passed/ ) | [ Java] ( https://github.com/fishercoder1534/Leetcode/blob/master/javascript/_2703.js ) | | Easy | Javascript
You can’t perform that action at this time.
0 commit comments