Files
Document-Management-System-…/vendor/scrivo/highlight.php/test/markup/javascript/class.txt
2021-04-07 19:25:18 -04:00

12 lines
189 B
Plaintext
Vendored

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}.`;
}
}