public/subjects/min-max
davhojt c8efa72155
docs(min-max): correct grammar
2022-05-01 16:19:28 +01:00
..
README.md docs(min-max): correct grammar 2022-05-01 16:19:28 +01:00

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