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.

27 lines
767 B

## 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
- [Functions](https://nan-academy.github.io/js-training/examples/functions.js)
- [Ternary](https://nan-academy.github.io/js-training/examples/ternary.js)
- [Math.min](https://devdocs.io/javascript/global_objects/math/min)
- [Math.max](https://devdocs.io/javascript/global_objects/math/max)
### Code provided
> The provided code will be added to your solution, and does not need to be submitted.
```js
Math.min = Math.max = undefined
```