docs(min-max): correct grammar

This commit is contained in:
davhojt 2022-05-01 16:19:28 +01:00
parent c4afeee6a1
commit c8efa72155
No known key found for this signature in database
GPG Key ID: C8C3C515E7AF0D2D
1 changed files with 7 additions and 9 deletions

View File

@ -2,26 +2,24 @@
### Instructions ### Instructions
Create the `max` function that takes 2 number as arguments Create a function named `max` that takes 2 number arguments and returns the largest of the two.
and returns the greatest
> You must not just use `Math.max`, make your own. > You must not just use `Math.max`, make your own.
Create the `min` function that takes 2 number as arguments Create a function named `min` which is the same as `max`, but returns the lowest.
and returns the lowest
> You must not just use `Math.min`, make your own. > You must not just use `Math.min`, make your own.
### Notions ### Notions
- [nan-academy.github.io/js-training/examples/functions](https://nan-academy.github.io/js-training/examples/functions.js) - [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) - [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) - [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) - [Math.max](https://devdocs.io/javascript/global_objects/math/max)
### Code provided ### 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 ```js
Math.min = Math.max = undefined Math.min = Math.max = undefined