prototype
mellicapen
这个作者很懒,什么都没留下…
展开
-
原型链
function Class(){} ; var object = new Class(); Class.prototype === object.__proto__ ; Class.prototype.constructor === Class ; 总结: 1. 只有type为function的对象才有prototype属性; 2. 任何对象都有_原创 2016-01-21 09:52:48 · 270 阅读 · 0 评论 -
我理解的javascript万物皆对象
Object.__proto__ // function(){} Object.__proto__.__proto__ // Object {} Object.__proto__.__proto__.__proto__ //null Function.__proto__ // function(){} Function.__pr原创 2016-01-20 10:22:37 · 508 阅读 · 1 评论 -
prototype
function t(){} function m(){} t.prototype // t {} t.prototype.__proto__ //Object {} t.prototype.constructor // t() m.prototype.constructor // m() t.prototype.__proto__ === m.proto原创 2016-02-21 10:55:01 · 248 阅读 · 0 评论 -
javascript 继承
1.prototype方式 function Father(name){ this.name = name ; } function Children(age){ this.age = age ; } Children.prototype = new Father("andy");原创 2016-02-21 18:00:32 · 202 阅读 · 0 评论