Merge pull request #14120 from Manish-Giri/fix/fix-tests-make-a-person

Add empty method body for make a person(staging)
This commit is contained in:
Dylan 2017-04-04 19:43:16 -05:00 committed by GitHub
commit 1a5965c89b

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;",
"};",
"",