From a92838a3fba8a02897ce852c09ac4cf19c6818a2 Mon Sep 17 00:00:00 2001 From: Angelos Chalaris Date: Tue, 18 Feb 2020 22:15:25 +0200 Subject: [PATCH] Update union.md --- snippets/union.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/snippets/union.md b/snippets/union.md index 479090d31..f30e39554 100644 --- a/snippets/union.md +++ b/snippets/union.md @@ -12,5 +12,5 @@ const union = (a, b) => Array.from(new Set([...a, ...b])); ``` ```js -union([1, 2, 3], [4, 3, 2]); // [1,2,3,4] -``` \ No newline at end of file +union([1, 2, 3], [4, 3, 2]); // [1, 2, 3, 4] +```