Skip to content

Commit 1b1fecb

Browse files
add 2703
1 parent a087125 commit 1b1fecb

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

javascript/_2703.js

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
/**
2+
* @param {...(null|boolean|number|string|Array|Object)} args
3+
* @return {number}
4+
*/
5+
var argumentsLength = function (...args) {
6+
return args.length;
7+
};
+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
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

0 commit comments

Comments
 (0)