Fixed a problem with a snippet

This commit is contained in:
Angelos Chalaris
2017-12-29 15:04:51 +02:00
parent 37a1d322d0
commit 0411303640

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);
```