javascript创建对象的方法

1、构造函数模式,没有显示创建对象,直接将属性方法赋给this,没有return语句。

每个方法都要在每个实例上重新定义一遍,无法得到复用。

functionPerson(name,age){
this.name=name;
this.age=age;
this.sayName=function(){
console.log(this.name)
}
}
varperson1=newPerson('chen',21)

2、混合构造函数原型模式看,构造函数模式用于定义实例属性,原型模式用于定义方法和共享的属性。

functionPerson(name,age){
this.name=name;
this.age=age;
}
Person.prototype={
constructor:Person,
sayName:function(){
console.log(this.name)
}
}
varperson1=newPerson('chen',21)

以上就是javascript创建对象的方法,希望对大家有所帮助。更多Javascript学习指路:Javascript

原文来自:https://www.py.cn
© 版权声明
THE END
喜欢就支持一下吧
点赞12 分享
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情代码图片

    暂无评论内容