Travis build: 489

This commit is contained in:
Travis CI
2017-12-29 11:39:09 +00:00
parent a55cd0da91
commit ae3b03e923
4 changed files with 123 additions and 136 deletions

View File

@ -5,6 +5,7 @@ Returns the maximum value out of two or more numbers/arrays.
Use `Math.max()` combined with the spread operator (`...`) to get the maximum value in the array.
```js
const max = (...arr) => Math.max(...[].concat(...arr);
```