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

peterson st gourdain
peterson st gourdain
931 Points

I don't get it

can some please break down the question I don't get it

script.js
function max(17,19) {

}
Mathew Tran
Mathew Tran
Courses Plus Student 10,205 Points

The question is asking you to:

  • create a function named max
  • it has two parameters
  • return the larger of the two parameters, using a return statement.

Use a conditional statement (if/else) to define which parameter gets returned

Note the function definition you have will not work. Parameters cannot start with numbers.

Matt.

1 Answer

Krishna Dheeraj Karlapudi
Krishna Dheeraj Karlapudi
20,790 Points

We need to create a conditional statement to verify which number is greater and return it

function max (number1 , number2)
{
 if(number1 > number2)
 {
   return number1;
 }
  else{
    return number2;
  }
}