Math.min
1 parent 1a9794f commit 40da71cCopy full SHA for 40da71c
1 file changed
1-js/05-data-types/02-number/article.md
@@ -396,7 +396,7 @@ A few examples:
396
397
```js run
398
alert( Math.max(3, 5, -10, 0, 1) ); // 5
399
- alert( Math.min(1, 2 ); // 1
+ alert( Math.min(1, 2) ); // 1
400
```
401
402
`Math.pow(n, power)`
0 commit comments