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 Object-Oriented JavaScript (2015) Constructor Functions and Prototypes Challenge Solution

Prakhar Patwa
Prakhar Patwa
11,260 Points

i have some problem with that challenge.

function Dice(sides){
  this.sides = sides;
  this.roll = function () {
        var randomNumber = Math.floor(Math.random() * this.sides) + 1;
        return randomNumber;
  }
}

var dice = new Dice(6);

what is the problem with my code,Its not working

2 Answers

this code part of the code looks good it should work. what does your ui.js code look like pluus the index.html. but again the code you posted is correct.

Prakhar Patwa
Prakhar Patwa
11,260 Points

ohh yes my mistake to clear my doubt i did not add the ui.js file thankyou.