先说说,
设计模式:
直接,
简单,
暴力。
上代码:
//单体模式
var teacer={
name:'lewis',
age:33,
showName:function(){
return this.name
}
}
teacer.showName();
//原型模式
//属性放在构造函数里,方法放在原型上
function teacer(name,age){
this.name=name;
this.age=age;
};
teacer.prototype.showName=function(){
return this.name;
}
var lewis=new teacer('lewis',17);
lewis.showName();
//伪类模式
class teacer{
constructor(name,age){
this.name=name;
this.age=age;
}
showName(){
return this.name;
}
}
var lewis=new teacer('lewis',22);
lewis.showName();
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。