From 56e49eb6449079db1e4cc4624c08b38d5398db0f 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/seed/challenges/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting.json b/seed/challenges/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting.json index a84d3bc89b..470220a500 100644 --- a/seed/challenges/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting.json +++ b/seed/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;", "};", "",