docs(cut-corners): add example of usage

This commit is contained in:
miguel 2023-03-28 16:07:47 +01:00 committed by MSilva95
parent bca42bed09
commit 446966c564
1 changed files with 20 additions and 0 deletions

View File

@ -10,10 +10,30 @@ Create some functions which behave like JavaScript's `Math` rounding functions:
- `trunc`: which behaves similar to `Math.trunc()`.
> Some restrictions apply:
>
> - You may not use strings conversion to do it
> - No bitwise operator
> - No `%` operator
### Usage
```js
const nums = [3.7, -3.7, 3.1, -3.1]
console.log(nums.map(round))
console.log(nums.map(floor))
console.log(nums.map(trunc))
console.log(nums.map(ceil))
```
Output:
```console
[ 4, -4, 3, -3 ]
[ 3, -4, 3, -4 ]
[ 3, -3, 3, -3 ]
[ 4, -3, 4, -3 ]
```
### Notions
- [Math](https://devdocs.io/javascript/global_objects/math)