Skip to content

Commit 40da71c

Browse files
authored
Added missing ')' after Math.min.
1 parent 1a9794f commit 40da71c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

1-js/05-data-types/02-number/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -396,7 +396,7 @@ A few examples:
396396

397397
```js run
398398
alert( Math.max(3, 5, -10, 0, 1) ); // 5
399-
alert( Math.min(1, 2 ); // 1
399+
alert( Math.min(1, 2) ); // 1
400400
```
401401

402402
`Math.pow(n, power)`

0 commit comments

Comments
 (0)