Guest User

Untitled

a guest
Jul 20th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. function Car(color) {
  2. this.color = color
  3. this.automatic = false;
  4. this.satnav = false;
  5. this.radio = true;
  6. this.mot = null;
  7. }
  8.  
  9. Car.prototype = {
  10. addFuel: () => {
  11. console.log('just added fuel to your car')
  12. },
  13.  
  14. washCar: () => {
  15. console.log('your car just got washed')
  16. }
  17. }
  18.  
  19. const BMW = new Car('red');
  20. BMW.addFuel(); // Just added fuel to your car
  21. console.log(BMW.color) // red
  22. console.log(BMW.satnav) // false
  23. BMW.satnav = true;
  24. console.log(BMW.satnav) // true
Add Comment
Please, Sign In to add comment