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 trialLuis Paulino
Courses Plus Student 1,779 Pointswhat do I do now?
I don't know what to do now. It passed with a string, but now it wants numbers.
function max(five,eight){
if(eight>five);
return eight;
}
1 Answer
Steven Parker
231,236 PointsYou have a semicolon after the conditional expression of your if statement — that makes it a "no-op" (does nothing).
After removing it, you'll also need to add another return statement to handle the cases where the condition is not true.
So your function will look something like this:
function max(five, eight) {
if (eight>five)
return eight;
return five;
}
And while it's perfectly legitimate from the programming language standpoint, I find the use of number names being used as the variables makes it a bit confusing to read (though somewhat humorous).
Happy coding! -sp
Luis Paulino
Courses Plus Student 1,779 PointsLuis Paulino
Courses Plus Student 1,779 Pointsthanks steven u always helping lol
jose macedo
6,041 Pointsjose macedo
6,041 Pointsthanks i had the same problem with this