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 trialPrakhar Patwa
11,260 Pointsi 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
Eric Trego
15,308 Pointsthis 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
11,260 Pointsohh yes my mistake to clear my doubt i did not add the ui.js file thankyou.