Skip to content

Commit

Permalink
update(JS): web/javascript/reference/global_objects/math/max
Browse files Browse the repository at this point in the history
  • Loading branch information
undead404 authored and AdriandeCita committed Dec 7, 2022
1 parent 79b1759 commit 742f18f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,9 @@ Math.max(value0, value1, /* … ,*/ valueN)
### Застосування Math.max()

```js
Math.max(10, 20); // 20
Math.max(10, 20); // 20
Math.max(-10, -20); // -10
Math.max(-10, 20); // 20
Math.max(-10, 20); // 20
```

### Отримання найбільшого з елементів масиву
Expand Down

0 comments on commit 742f18f

Please sign in to comment.