Skip to content

Commit 2465f17

Browse files
authored
Merge pull request #547 from j0e1in/patch-1
Added missing ')' after `Math.min`.
2 parents 708369c + 40da71c commit 2465f17

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)