diff --git a/subjects/min-max/README.md b/subjects/min-max/README.md index 9e87c908..c309839b 100644 --- a/subjects/min-max/README.md +++ b/subjects/min-max/README.md @@ -2,26 +2,24 @@ ### Instructions -Create the `max` function that takes 2 number as arguments -and returns the greatest +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 the `min` function that takes 2 number as arguments -and returns the lowest +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 -- [nan-academy.github.io/js-training/examples/functions](https://nan-academy.github.io/js-training/examples/functions.js) -- [nan-academy.github.io/js-training/examples/ternary](https://nan-academy.github.io/js-training/examples/ternary.js) -- [devdocs.io/javascript/global_objects/math/min](https://devdocs.io/javascript/global_objects/math/min) -- [devdocs.io/javascript/global_objects/math/max](https://devdocs.io/javascript/global_objects/math/max) +- [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 -> all code provided will be added to your solution and doesn't need to be submited. +> The provided code will be added to your solution, and does not need to be submitted. ```js Math.min = Math.max = undefined