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.

javier klijnjan
5,409 Pointsi'm not following this excersice, i'm not sure what i have todo after giving the 2 parameters to the function
should i use two variables inside the max function assigning a number for each one?
function max(mayor, menor){
if(mayor > menor){
return max;
}
}
1 Answer

Emmanuel C
10,636 PointsHey Javier,
Its asking you to create a function named max that took 2 arguments and returned the largest of the two. You got it mostly right if major is greater than menor you would return major since thats the largest. You also can check for the opposite, whether menor is greater than major or you can just add an else
function max(mayor, menor){
if(mayor > menor){
return mayor;
}
else {
return menor;
}
}