From 642eb18aab570d3052fc8eb12d2bc02ae72d3563 Mon Sep 17 00:00:00 2001 From: Travis CI Date: Fri, 29 Dec 2017 12:30:55 +0000 Subject: [PATCH] Travis build: 540 --- 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 ab1608e3d..066eb0df3 100644 --- a/README.md +++ b/README.md @@ -2692,6 +2692,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 4068be7a2..04dd2b420 100644 --- a/docs/index.html +++ b/docs/index.html @@ -1244,6 +1244,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 a2188fd48..37b235214 100644 --- a/snippets/max.md +++ b/snippets/max.md @@ -34,6 +34,7 @@ Use `Math.max()` combined with the spread operator (`...`) to get the maximum va + const max = (...arr) => Math.max(...[].concat(...arr);