diff --git a/README.md b/README.md index 81fee88ae..7f438c88e 100644 --- a/README.md +++ b/README.md @@ -4119,6 +4119,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 62404703b..fa0c4f729 100644 --- a/docs/index.html +++ b/docs/index.html @@ -1841,6 +1841,7 @@ Use Number() to check if the coercion holds.

+ const max = (...arr) => Math.max(...[].concat(...arr); diff --git a/snippets/max.md b/snippets/max.md index 4de7673f6..e01ff3e6e 100644 --- a/snippets/max.md +++ b/snippets/max.md @@ -24,6 +24,7 @@ Use `Math.max()` combined with the spread operator (`...`) to get the maximum va + const max = (...arr) => Math.max(...[].concat(...arr);