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 trialNathan evans
3,775 Pointsi dont know what im doing
this doesnt make any sense at all
function max(one, two);
return
1 Answer
Jonathan Grieve
Treehouse Moderator 91,253 PointsHi Nathan,
What you're building here is a function declaration. It is the main body of a function. You don't actually enter values at this stage but there's still a bit of work to do.
First, use your curly braces so JavaScript knows where to define function scope.
function (one, two) {
}
Then you'll need to provide the condition, in that function that waits for numbers to test an expression.
if (one > two) {
return one;
}
Then later on when you call the function, this is when you pass in the actual values that the function will work with.