From 9a8d380aeac175bcbddd79c61030c9c5a401a927 Mon Sep 17 00:00:00 2001 From: Logan Tegman Date: Thu, 15 Oct 2015 20:17:29 -0700 Subject: [PATCH] Add MDN Links to Functional Programming Waypoints --- ...t-oriented-and-functional-programming.json | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/challenges/object-oriented-and-functional-programming.json b/challenges/object-oriented-and-functional-programming.json index c663444d4e..d80a50de85 100644 --- a/challenges/object-oriented-and-functional-programming.json +++ b/challenges/object-oriented-and-functional-programming.json @@ -200,6 +200,9 @@ "// Only change code above this line.", "(function() {return array;})();" ], + "MDNlinks":[ + "Array.map()" + ], "challengeType":1, "type": "waypoint" }, @@ -228,6 +231,9 @@ "// Only change code above this line.", "(function() {return singleVal;})();" ], + "MDNlinks":[ + "Array.reduce()" + ], "challengeType":1, "type": "waypoint" }, @@ -256,6 +262,9 @@ " // Only change code above this line.", "(function() {return array;})();" ], + "MDNlinks":[ + "Array.filter()" + ], "challengeType":1, "type": "waypoint" }, @@ -284,6 +293,9 @@ " // Only change code above this line.", "(function() {return array;})();" ], + "MDNlinks":[ + "Array.sort()" + ], "challengeType":1, "type": "waypoint" }, @@ -308,6 +320,9 @@ " // Only change code above this line.", "(function() {return array;})();" ], + "MDNlinks":[ + "Array.reverse()" + ], "challengeType": 1, "type": "waypoint" }, @@ -335,6 +350,9 @@ "// Only change code above this line.", "(function() {return array;})();" ], + "MDNlinks":[ + "Array.concat()" + ], "challengeType": 1, "type": "waypoint" }, @@ -361,6 +379,9 @@ "// Only change code above this line.", "(function() {return array;})();" ], + "MDNlinks":[ + "String.split()" + ], "challengeType":1, "type": "waypoint" }, @@ -386,6 +407,9 @@ "// Only change code above this line.", "(function() {return joinMe;})();" ], + "MDNlinks":[ + "Array.join()" + ], "challengeType":1, "type": "waypoint" }