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

Create empty method body to prevent TypeError
This commit is contained in:
Berkeley Martinez
2017-04-18 11:08:09 -07:00
committed by GitHub

View File

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