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

I am just completely lost on this and would like an example.

I'm trying my best to figure it out step by step but it's confusing me for some reason when throwing in the conditional statements. An example would be nice or just a couple of first step by step instructions.

script.js
function max (high, low){
 return 
}

1 Answer

Patrik Horváth
Patrik Horváth
11,110 Points

Task 1 - you have to just make function ( never give SPACE after function name ! ), then just IF statment to check with walue if more :)

function max(number_A, number_B) {
  if (number_A > number_B) {
    return number_A;
  }
  return number_B;
}

Task 2 - Check if its working :D

function max(number_A, number_B) {
  if (number_A > number_B) {
    return number_A;
  }
  return number_B;
}

alert(max(10, 20));