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

有关原型链的问题

有关原型链的问题

明月笑刀无情 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 关注
  • 428 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
微信客服

购课补贴
联系客服咨询优惠详情

帮助反馈 APP下载

慕课网APP
您的移动学习伙伴

公众号

扫描二维码
关注慕课网微信公众号