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.
davhojt
c8efa72155
|
3 years ago | |
---|---|---|
.. | ||
README.md | 3 years ago |
README.md
Min Max
Instructions
Create a function named max
that takes 2 number arguments and returns the largest of the two.
You must not just use
Math.max
, make your own.
Create a function named min
which is the same as max
, but returns the lowest.
You must not just use
Math.min
, make your own.
Notions
Code provided
The provided code will be added to your solution, and does not need to be submitted.
Math.min = Math.max = undefined