From b9fdbffa7101fc9e20026dfc55c10be7cffcb6c8 Mon Sep 17 00:00:00 2001 From: Navjot Singh <110228+navjotjsingh@users.noreply.github.com> Date: Fri, 3 May 2019 14:21:09 +0530 Subject: [PATCH] Broken Links in Sum of all odd Fibbonaci Nos Guide (#35911) Fixed a broken and a missing link in the guide. --- .../sum-all-odd-fibonacci-numbers/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/guide/english/certifications/javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/sum-all-odd-fibonacci-numbers/index.md b/guide/english/certifications/javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/sum-all-odd-fibonacci-numbers/index.md index e8962cacbf..5a23f0f84d 100644 --- a/guide/english/certifications/javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/sum-all-odd-fibonacci-numbers/index.md +++ b/guide/english/certifications/javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/sum-all-odd-fibonacci-numbers/index.md @@ -68,7 +68,7 @@ As you get the next odd one, don't forget to add it to a global variable that ca #### Relevant Links -* JS while Loop +* JS while Loop ## ![:sunflower:](https://forum.freecodecamp.com/images/emoji/emoji_one/sunflower.png?v=3 ":sunflower:") Intermediate Code Solution: @@ -107,7 +107,7 @@ As you get the next odd one, don't forget to add it to a global variable that ca #### Relevant Links * JS Array Prototype Push -* JS For Loops Explained +* JS For Loops Explained * JS Array Prototype Filter * JS Array Prototype Reduce