网站首页 站内搜索

搜索结果

查询Tags标签: child2,共有 1条记录
  • JavaScript proto 原型链 问题

    这是一个JavaScript 原型链的面试题 function Parent() {this.a = 1;this.b = [1, 2, this.a];this.c = { demo: 5 };this.show = function () {console.log(this.a , this.b , this.c.demo );} } function Child() {this.a = 2;this.change = function () {this.b.push(t…

    2021/5/31 20:21:04 人评论 次浏览
扫一扫关注最新编程教程