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
d57c9e3a21
|
4 years ago | |
---|---|---|
.. | ||
README.md | 4 years ago |
README.md
Count up to
Instructions
Declare upTo
function that takes an end
number argument.
You must log each number starting at 0
until you reach the end
value
(included)
Example:
upTo(3)
would log: 0 1 2 3