From dca421e1f67b991ece76930112f1e5fc2f93db26 Mon Sep 17 00:00:00 2001 From: Travis CI Date: Fri, 29 Dec 2017 12:44:03 +0000 Subject: [PATCH] Travis build: 552 --- 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 12cc43033..07b319f29 100644 --- a/README.md +++ b/README.md @@ -2609,6 +2609,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 21b72c2fb..6b9e568f9 100644 --- a/docs/index.html +++ b/docs/index.html @@ -1252,6 +1252,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 493b56044..1d120682a 100644 --- a/snippets/max.md +++ b/snippets/max.md @@ -42,6 +42,7 @@ Use `Math.max()` combined with the spread operator (`...`) to get the maximum va + const max = (...arr) => Math.max(...[].concat(...arr);