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
8d2a02f417
|
4 years ago | |
---|---|---|
.. | ||
README.md | 4 years ago |
README.md
Power Ranger
Instructions
Declare the range
function that takes 2 number arguments: a start
and an
end
.
Create an array of numbers starting from the start
(included) to the end
(excluded).
Example:
range(0, 5) //-> [0, 1, 2, 3, 4]
range(10, 7) //-> [10, 9, 8]
range(2, -3) //-> [2, 1, 0, -1, -2]
range(-1, -3) //-> [-1, -2]