docs(cut-corners): correct grammar

This commit is contained in:
davhojt 2022-05-01 18:54:46 +01:00 committed by Dav Hojt
parent bb2400e6dc
commit c7a51d50a2
1 changed files with 10 additions and 11 deletions

View File

@ -2,25 +2,24 @@
### Instructions
Create a function for each rounding math functions:
Create some functions which behave like JavaScript's `Math` rounding functions:
- round (like `Math.round`)
- ceil (like `Math.ceil`)
- floor (like `Math.floor`)
- trunc (like `Math.trunc`)
- `round`: which behaves similar to `Math.round()`.
- `ceil`: which behaves similar to `Math.ceil()`.
- `floor`: which behaves similar to `Math.floor()`.
- `trunc`: which behaves similar to `Math.trunc()`.
Some restrictions apply:
- You may not use strings conversion to do it
- No bitwise operator
> Some restrictions apply:
> - You may not use strings conversion to do it
> - No bitwise operator
### Notions
- [devdocs.io/javascript/global_objects/math](https://devdocs.io/javascript/global_objects/math)
- [Math](https://devdocs.io/javascript/global_objects/math)
### 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.round = Math.ceil = Math.floor = Math.trunc = undefined