UNPKG

webdash-readme-preview

Version:
12 lines (9 loc) 189 B
class Car extends Vehicle { constructor(speed, cost) { super(speed); var c = Symbol('cost'); this[c] = cost; this.intro = `This is a car runs at ${speed}.`; } }