From 521a967fe0dada38d4546bf12af68c3f0edc9039 Mon Sep 17 00:00:00 2001 From: MANISH-GIRI Date: Mon, 27 Mar 2017 18:02:45 -0400 Subject: [PATCH] Add empty method body for make a person(staging) --- .../intermediate-algorithm-scripting.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/challenges/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting.json b/challenges/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting.json index a84d3bc89b..470220a500 100644 --- a/challenges/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting.json +++ b/challenges/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting.json @@ -1277,6 +1277,10 @@ ], "challengeSeed": [ "var Person = function(firstAndLast) {", + " // Complete the method below and implement the others similarly", + " this.getFullName = function() {", + " return \"\";", + " };", " return firstAndLast;", "};", "",