From f267d2a61b9554e54afb150877826798652a8bf9 Mon Sep 17 00:00:00 2001 From: Navjot Singh <110228+navjotjsingh@users.noreply.github.com> Date: Wed, 26 Jun 2019 01:29:15 +0530 Subject: [PATCH] Fixed Broken Links in Binary Agents (#35947) The parseInt link to the freecodecamps forum pointed to a link with no resource. And Also fixed the link for String.length and removed a dead link. --- .../intermediate-algorithm-scripting/binary-agents/index.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/guide/english/certifications/javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/binary-agents/index.md b/guide/english/certifications/javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/binary-agents/index.md index 4884c2f347..b94635d9e0 100644 --- a/guide/english/certifications/javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/binary-agents/index.md +++ b/guide/english/certifications/javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/binary-agents/index.md @@ -71,7 +71,7 @@ Make sure that each time you transcode a character from binary to decimal, you r ## Relevant Links * String.prototype.split -* parseInt +* parseInt ## ![:sunflower:](https://forum.freecodecamp.com/images/emoji/emoji_one/sunflower.png?v=3 ":sunflower:") Intermediate Code Solution: ```javascript @@ -122,8 +122,7 @@ Make sure that each time you transcode a character from binary to decimal, you r ## Relevant Links * Math.pow -* String.length -* Link Title 3 +* String.length ## ![:rotating_light:](https://forum.freecodecamp.com/images/emoji/emoji_one/rotating_light.png?v=3 ":rotating_light:") Advanced Code Solution: ```javascript