Advertisement
Guest User

Untitled

a guest
Aug 3rd, 2015
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function Car(color, speed) {
  2.     this.color = color;
  3.     this.speed = speed;
  4.     this.info = function () {
  5.         return color + "car travelling at " + speed + " mph.";
  6.     }
  7. }
  8.  
  9. var redCar = new Car('red', 55);
  10. var yellowCar = new Car('yellow', 60);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement