为了账号安全,请及时绑定邮箱和手机立即绑定

有关原型链的问题

有关原型链的问题

明月笑刀无情 2018-11-21 17:17:06
function Shape(){    this.name='Shape';    this.toString=function(){        return this.name;    };}function TwoDShape(){    this.name='2D shape';}function Triangle(side,height){    this.name='Triangle';    this.side=side;    this.height=height;    this.getArea=function(){        return this.side*this.height/2;    };}TwoDShape.prototype=new Shape();Triangle.prototype=new TwoDShape();var my=new Triangle(5,10);my.getArea();//25my.toString();//"Triangle"1.my.toString()被调用时,JavaScript引擎执行路径是怎样的?
查看完整描述

1 回答

  • 1 回答
  • 0 关注
  • 427 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信