Add empty method body for make a person(staging)

This commit is contained in:
MANISH-GIRI
2017-03-27 18:02:45 -04:00
parent ae70f4d341
commit 521a967fe0

View File

@ -1277,6 +1277,10 @@
],
"challengeSeed": [
"var Person = function(firstAndLast) {",
" // Complete the method below and implement the others similarly",
" this.getFullName = function() {",
" return \"\";",
" };",
" return firstAndLast;",
"};",
"",