摘要: ### 原型链1 求代码结果```function Foo() { Foo.getValue = function() { console.log(1); } this.getValue = function() { console.log(2); }} Foo.prototype.getValue = function() { console.log(3)}Foo.getV... 阅读全文
posted @ 2020-07-29 20:52 alohaplat 阅读(121) 评论(0) 推荐(0)