mirror of https://github.com/01-edu/public.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Clement Denis
0e67e834e5
|
4 years ago | |
---|---|---|
.. | ||
README.md | 4 years ago |
README.md
🌟 Give it a ...rest
Instructions
You are now a butter passer, calculator, and barttender all-in-one robot. You want to keep on improving but you can feel like your memory capacities are reaching their limits. You will now try to improve what you aready have.
Declare the function countArgs
which will return the number of argument it
recieved. Examples:
console.log(countArgs(1)) // 1
console.log(countArgs(1, 10)) // 2
console.log(countArgs(1, 10, 100)) // 3
// etc...