1. 程式人生 > >函式原型

函式原型

原型的作用:
1.解決資料共享,節省記憶體空間
2.實現繼承,節省記憶體空間
例項物件原型: __ proto __,是瀏覽器使用的
建構函式原型:prototype,是程式設計師使用的

unction Person(name,age)	{
	this.name=name;
	this.age=age;
}
Person.prototype.eat=function(){
	
}
var per=new Person("張三",20) 

簡單的原型寫法

Person.prototype={
	//手動修改構造器的指向
	constructor:Person,
	height:"168",
	weight:"48kg",
	stuly:function(){
		
	}
}