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... Other 2023-06-09 48 点赞 0 评论 72 浏览