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.

31 lines
944 B

4 years ago
## Min Max
### Instructions
Create the `max` function that takes 2 number as arguments
and returns the greatest
> You must not just use `Math.max`, make your own.
Create the `min` function that takes 2 number as arguments
and returns the lowest
> You must not just use `Math.min`, make your own.
### Notions
- [nan-academy.github.io/js-training/examples/functions.js](https://nan-academy.github.io/js-training/examples/functions.js)
- [nan-academy.github.io/js-training/examples/ternary.js](https://nan-academy.github.io/js-training/examples/ternary.js)
- [devdocs.io/javascript/global_objects/array/Math/min](https://devdocs.io/javascript/global_objects/array/Math/min)
- [devdocs.io/javascript/global_objects/array/Math/max](https://devdocs.io/javascript/global_objects/array/Math/max)
4 years ago
### Code provided
> all code provided will be added to your solution and doesn't need to be submited.
4 years ago
```js
Math.min = Math.max = undefined
```