Fixed a problem with a snippet

This commit is contained in:
Angelos Chalaris
2017-12-29 15:04:51 +02:00
parent 542f30a0ed
commit 8867ae4d59

View File

@ -6,56 +6,6 @@ Use `Math.max()` combined with the spread operator (`...`) to get the maximum va
```js
const max = (...arr) => Math.max(...[].concat(...arr);
```