Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Luis 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
216,136 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