1038
1、函数内部不需要new构建函数的过程,直接用this代替对象写属性和方法,也不需要return返回值。比工厂方法更方便。
2、使用时,使用new关键字调用自定义构造函数。
注:构造函数的函数名首字母需要大写,不同于其他普通函数。
实例
functionPerson(name,age,sex){ //不需要使用new一个新对象,直接用this替代将来创建的新对象 this.name=name; this.age=age; this.sex=sex; this.sayHi=function(){ console.log("hi"); ; //不需要return varp1=newPerson("zs",18,true); console.log(p1);