From 8867ae4d590dd9c5a39cf72c6c861e190ed4f581 Mon Sep 17 00:00:00 2001 From: Angelos Chalaris Date: Fri, 29 Dec 2017 15:04:51 +0200 Subject: [PATCH] Fixed a problem with a snippet --- snippets/max.md | 50 ------------------------------------------------- 1 file changed, 50 deletions(-) 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); ```