欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

es5继承

程序员文章站 2022-07-15 20:38:20
...
function inherit (target, original) {
  function f () {}
  f.prototype = original.prototype
  target.prototype = new f()
  target.prototype.constructor = target
}

上一篇: Rxjava总结第二篇

下一篇: ES5的继承