码迷,mamicode.com
首页 > 其他好文 > 详细

prototype原型

时间:2018-03-15 16:28:34      阅读:135      评论:0      收藏:0      [点我收藏+]

标签:UNC   new   func   sam   add   body   address   name   city   

function Persom(name,city){
	this.name = name;
	this.address.city = city;
}
Persom.prototype.address = {city:‘x‘};
var p1 = new Persom(‘tony‘,‘a‘);
var p2 = new Persom(‘sam‘,‘b‘);
console.log([p1,p1.address,p1.address.city])

  

prototype原型

标签:UNC   new   func   sam   add   body   address   name   city   

原文地址:https://www.cnblogs.com/rockyan/p/8573760.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!