diff --git a/README.md b/README.md
index 2da6dbc3e..4f27fb819 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 80634f562..b3b2a86e2 100644
--- a/docs/index.html
+++ b/docs/index.html
@@ -1840,6 +1840,7 @@ Use Number() to check if the coercion holds.
max([10, 1, 5]); // 10
diff --git a/snippets/max.md b/snippets/max.md
index ca84a90f8..0d7163a9d 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);
```