public/subjects/count-up-to
Clement Denis d57c9e3a21 discovery-js: add additional loop exercise 2021-05-05 23:51:33 +01:00
..
README.md discovery-js: add additional loop exercise 2021-05-05 23:51:33 +01:00

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