Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

JavaScript JavaScript Foundations Objects Prototypes

What am I doing wrong here?

<!DOCTYPE html>
<html lang="en">
  <head>
    <title> JavaScript Foundations: Objects</title>
    <style>
      html {
        background: #FAFAFA;
        font-family: sans-serif;
      }
    </style>
  </head>
  <body>
    <h1>JavaScript Foundations</h1>
    <h2>Objects: Prototypes</h2>
    <script>


      var carPrototype = {
        model: "generic",
        currentGear: 0,
        increaseGear: function() {
          this.currentGear ++;
        },
        decreaseGear: function() {
          this.currentGear--;
        } 
      }

      function Car(kind) {
          Car.model = kind;
      }


    </script>
  </body>
</html>

2 Answers

Dave McFarland
STAFF
Dave McFarland
Treehouse Teacher

Try this:

function Car(kind) {
    this.model = kind;
    this.currentGear = 1;
    return this;
}

Car.prototype.increaseGear = function() {
    this.currentGear++;
} 

Car.prototype.decreaseGear = function() {
    this.currentGear--;
} 

var jaguar = new Car("jaguar");
console.log(jaguar);
jaguar.increaseGear();
jaguar.increaseGear();
console.log(jaguar);
var bmw = new Car("bmw");
bmw.decreaseGear();  // unfortunately this will probably break the car
console.log(bmw);

In general, use prototype to add functions and properties that will be shared by every instance of the object. In this case, each car will have its own model and currentGear, so that can go in the original constructor. However, every car instance will share the same increaseGear and decreaseGear functions so they should go in the prototype.

Patryk Nowak
Patryk Nowak
14,103 Points
function Car(kind) {
   Car.model = kind;
}


      Car.prototype = {
        model: "generic",
        currentGear: 0,
        increaseGear: function() {
          this.currentGear ++;
        },
        decreaseGear: function() {
          this.currentGear--;
        } 
      }