Create empty method body to prevent TypeError

This commit is contained in:
MANISH-GIRI
2017-03-26 03:58:52 -04:00
parent 2e1b3e846c
commit 96180d630e

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