题解 | FED47 模块
模块
http://www.nowcoder.com/practice/48e53feaabe94506a61300edadb5496d
function createModule(str1, str2) { // return // var obj = ; return { greeting:str1, name:str2, sayIt:function (){ return this.greeting+', '+this.name //注意逗号后面不要少了空格 } } }
', '后面不要少了空格