diff --git a/README.md b/README.md index 9209e5373..962e19a99 100644 --- a/README.md +++ b/README.md @@ -2613,6 +2613,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 bc7f53f83..773c6db53 100644 --- a/docs/index.html +++ b/docs/index.html @@ -1256,6 +1256,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 aaf49a05e..d9028f08f 100644 --- a/snippets/max.md +++ b/snippets/max.md @@ -46,6 +46,7 @@ Use `Math.max()` combined with the spread operator (`...`) to get the maximum va + const max = (...arr) => Math.max(...[].concat(...arr);