"and" instead of "/" just to match previous line

This commit is contained in:
joaquinelio 2022-06-22 11:45:52 -03:00 committed by GitHub
parent 7964b11b8f
commit 07727ee093
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -403,7 +403,7 @@ A few examples:
``` ```
`Math.max(a, b, c...)` and `Math.min(a, b, c...)` `Math.max(a, b, c...)` and `Math.min(a, b, c...)`
: Returns the greatest/smallest from the arbitrary number of arguments. : Returns the greatest and smallest from the arbitrary number of arguments.
```js run ```js run
alert( Math.max(3, 5, -10, 0, 1) ); // 5 alert( Math.max(3, 5, -10, 0, 1) ); // 5