Advertisement
ErolKZ

Untitled

Oct 31st, 2021
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1.  
  2. class Vehicle {
  3.  
  4. constructor (type, model, parts, fuel) {
  5.  
  6.  
  7. this.type = type;
  8.  
  9. this.model = model;
  10.  
  11. this.parts = {
  12.  
  13. engine: parts.engine,
  14.  
  15. power: parts.power,
  16.  
  17. quality: parts.engine * parts.power,
  18.  
  19. };
  20.  
  21.  
  22. this.drive = function (decr) {
  23.  
  24. this.fuel = fuel - decr;
  25.  
  26. }
  27.  
  28.  
  29.  
  30. }
  31.  
  32.  
  33. }
  34.  
  35.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement