/ProcessWithAnimation

使用动画解释JS代码执行过程。 尝试

Primary LanguageCSS

动画演示JS执行过程

使用方法

npm install 
gulp serve && gulp watch

示例代码

《JavaScript高级程序设计》 6.3.1 章 原型链:

function SuperType(){
        this.property = true;
}
SuperType.prototype.getSuperValue = function(){
  return this.property;
};
function SubType(){
    this.subproperty = false;
}
//    SuperType
SubType.prototype = new SuperType();
SubType.prototype.getSubValue = function (){
    return this.subproperty;
  };
var instance = new SubType();
alert(instance.getSuperValue());
//true

准备

  • 6.3 章阅读
  • 图示手稿

PROGRESS

  1. 动画尝试