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!

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

Constructor Function

Can someone please help me with this Challenge:

"Modify the 'Car' constructor function so that it takes an argument for its model and set its 'model' to the model passed in from the argument."

<script>


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

      function Car() {

      }


    </script>

2 Answers

Chris Malcolm
Chris Malcolm
2,909 Points

perhaps

  function Car(model) {
    this.prototype = carPrototype;
    this.model = model || carPrototype.model;
  }

//tests
console.log((new Car("Mazda")).model);
console.log((new Car("Sedan")).model);
console.log((new Car()).model);

Ah...that worked and i like the way ity is written out, i understand it,

thanks.