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