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 trial

JavaScript JavaScript Basics (Retired) Creating Reusable Code with Functions Create a max() Function

Arguments and Conditioning is what i dont get. Help?

I did what it asked me to do which is the first step. However, I got stuck on the second step. Please explain what you can.

script.js
function max(10, 20) {

}

2 Answers

Replace "10" and "20" with a name e.g. "less" and "more". When invoking/calling the function with parameters, for example: "max(10,20)" the parameters are "stored" in "less" and "more".

Jonathan Grieve
MOD
Jonathan Grieve
Treehouse Moderator 91,253 Points

What it wants you to do is to retrieve the largest of the 2 numbers based on what the numbers you specify are. You can do that by providing a conditional statement (an if statement). It'll check your arguments by comparing and returning the biggest number. :-)