From cf2e634bf3a3d37fcd5f3459dc669a2f9ee61855 Mon Sep 17 00:00:00 2001 From: Travis CI Date: Fri, 29 Dec 2017 12:37:08 +0000 Subject: [PATCH] Travis build: 546 --- README.md | 1 + docs/index.html | 1 + snippets/max.md | 1 + 3 files changed, 3 insertions(+) diff --git a/README.md b/README.md index 2f131cd54..6c0aebb86 100644 --- a/README.md +++ b/README.md @@ -2605,6 +2605,7 @@ Use `Math.max()` combined with the spread operator (`...`) to get the maximum va + const max = (...arr) => Math.max(...[].concat(...arr); diff --git a/docs/index.html b/docs/index.html index 332363464..df086191a 100644 --- a/docs/index.html +++ b/docs/index.html @@ -1248,6 +1248,7 @@ lcm([1, 3, 4], 5); // 60 + const max = (...arr) => Math.max(...[].concat(...arr); diff --git a/snippets/max.md b/snippets/max.md index 0f705109c..fc588dbbf 100644 --- a/snippets/max.md +++ b/snippets/max.md @@ -38,6 +38,7 @@ Use `Math.max()` combined with the spread operator (`...`) to get the maximum va + const max = (...arr) => Math.max(...[].concat(...arr);