function Super(){ // 父类 }
function Sub(){ // 子类 }
Sub.prototype = new Super();
Sub.prototype.constructor = Sub;
var sub = new Sub();
console.log('Sub.prototype.constructor===Sub',Sub.prototype.constructor===Sub); // true
console.log('sub.__proto__==Sub.prototype',sub.__proto__==Sub.prototype); // true
console.log('Sub.prototype.__proto__===Super.prototype',Sub.prototype.__proto__===Super.prototype); // true
相关文章
- 01-20美团数据仓库的演进
- 01-20你需要知道的ETL基础知识
- 01-20WinDebug的一些基本使用命令
- 01-20Python 提高元组的可读性
- 01-20ETL常用的三种工具介绍及对比Datastage、Informatica、Kettle
- 01-20etl的解析
- 01-20position-relative 的问题
- 01-20new和delete的重载
- 01-20删除一个对象的属性、delete
- 01-20Mac的光标后删除内容