Advertisement
Neri0817

Untitled

Mar 7th, 2022
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. class Vehicle {
  2.   constructor(type, model, parts, fuel) {
  3.     this.type = type;
  4.     this.model = model;
  5.     this.parts = parts;
  6.     this.fuel = fuel;
  7.     this.parts.quality = this.parts.engine * this.parts.power;
  8.   }
  9.   drive(x) {
  10.     this.fuel -= x;
  11.   }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement