Added missing ')' after Math.min
.
This commit is contained in:
parent
1a9794f460
commit
40da71ce7a
1 changed files with 1 additions and 1 deletions
|
@ -396,7 +396,7 @@ A few examples:
|
|||
|
||||
```js run
|
||||
alert( Math.max(3, 5, -10, 0, 1) ); // 5
|
||||
alert( Math.min(1, 2 ); // 1
|
||||
alert( Math.min(1, 2) ); // 1
|
||||
```
|
||||
|
||||
`Math.pow(n, power)`
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue