function Hello(){
var name;
this.setName = function(thyName){
name = thyName;
};
this.sayHello = function(){
console.log('Hello '+name);
};
};
module.exports = Hello;
我的问题是:
最后的Hello是不是就是定义的Hello函数?如果是,它是一个方法还是对象?谢谢
是对象也是方法
方法也可以看作对象