From decc12c114ed70633a422068c9e50b778c3dd5e7 Mon Sep 17 00:00:00 2001 From: Travis CI Date: Fri, 29 Dec 2017 12:47:49 +0000 Subject: [PATCH] Travis build: 554 --- 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 7a9b3710f..019f87b84 100644 --- a/README.md +++ b/README.md @@ -2611,6 +2611,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 96b59c008..13cc9e599 100644 --- a/docs/index.html +++ b/docs/index.html @@ -1254,6 +1254,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 deab49958..dc9fdca0c 100644 --- a/snippets/max.md +++ b/snippets/max.md @@ -44,6 +44,7 @@ Use `Math.max()` combined with the spread operator (`...`) to get the maximum va + const max = (...arr) => Math.max(...[].concat(...arr);