From 96180d630e0f73b9079b712baed4e0d12d798760 Mon Sep 17 00:00:00 2001 From: MANISH-GIRI Date: Sun, 26 Mar 2017 03:58:52 -0400 Subject: [PATCH] Create empty method body to prevent TypeError --- .../advanced-bonfires.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/seed/challenges/01-front-end-development-certification/advanced-bonfires.json b/seed/challenges/01-front-end-development-certification/advanced-bonfires.json index 35f949ac9b..93b2d54e5f 100644 --- a/seed/challenges/01-front-end-development-certification/advanced-bonfires.json +++ b/seed/challenges/01-front-end-development-certification/advanced-bonfires.json @@ -397,6 +397,10 @@ ], "challengeSeed": [ "var Person = function(firstAndLast) {", + " // Complete the method below and implement the others similarly", + " this.getFullName = function() {", + " return \"\";", + " };", " return firstAndLast;", "};", "",