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 trialSarfaraj Alam
14,074 PointsRandom Number Challenge Part II
function max (x , i) { if (x >i ) { return x; } else { return i ; }
alert ( max( i, x)); }
now where am i wrong?
function max (x , i) {
if (x >i ) {
return x;
} else {
return i ;
}
alert ( max( i, x));
}
2 Answers
Chyno Deluxe
16,936 PointsYou must pass numbers as the arguments to give as the value of x and i.
alert(max(5, 10));
Jason Anders
Treehouse Moderator 145,860 PointsChyno Deluxe is correct, but your function call must also be outside of the actual function you are calling. So, just move the alert
line to after the last closing brace.
Chyno Deluxe
16,936 PointsGood Catch I missed that.