虚心萝莉

文章
4
资源
0
加入时间
4年0月6天

Js 原型链

var a = {}console.log(a.__proto__=== Object.prototype); // truevar A = function(){}var a = new A();console.log(a.__proto__=== A.prototype); // truevar a1 = {}var a2 = Object.create...