Dashboard sipadu mbip
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

class.txt 189B

1234567891011
  1. class Car extends Vehicle {
  2. constructor(speed, cost) {
  3. super(speed);
  4. var c = Symbol('cost');
  5. this[c] = cost;
  6. this.intro = `This is a car runs at
  7. ${speed}.`;
  8. }
  9. }