## 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 ```