From d331ad1fcd8988eb416bb9bf830b356cbca69a39 Mon Sep 17 00:00:00 2001 From: Hassan Usman <38628704+husseyexplores@users.noreply.github.com> Date: Mon, 25 Mar 2019 21:03:55 +0500 Subject: [PATCH] Fix typos: JS intermediate algorithm guide (#34874) * Typo: JS Algorithm missing-letters * Fix typo: Broken link syntax * Fix typo: missing bracket * Remove duplicate link/info --- .../intermediate-algorithm-scripting/sorted-union/index.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/guide/english/certifications/javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/sorted-union/index.md b/guide/english/certifications/javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/sorted-union/index.md index e9654612e7..0709e177de 100644 --- a/guide/english/certifications/javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/sorted-union/index.md +++ b/guide/english/certifications/javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/sorted-union/index.md @@ -185,9 +185,8 @@ uniteUnique([1, 3, 2], [5, 2, 1, 4], [2, 1]); ### Code Explanation: -* We first use `concat()` with an empty array `]` as a starting point and the spread operator `...` to create an array out of the Arguments object and to flatten it at the same time +* We first use `concat()` with an empty array as a starting point and the spread operator `...` to create an array out of the Arguments object and to flatten it at the same time * then we use the new ES2015 **Set** object to store only unique values -* (to learn more about Sets, read [here) #### Relevant Links