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

Daniel Haasenritter
PLUS
Daniel Haasenritter
Courses Plus Student 3,463 Points

Okay, seriously...can someone break this one down for me Barney Style...lots of pictures please

I keep getting task 1 is no longer complete. I've tried this one with letters (a, b), numbers (10, 12), and now combinations (num1, num2). The first part seems to work but I lose it when I add the alert.

script.js
function max (num1, num2) {
  if (num1 > num2) {
    return num1;
  } else {
    return num2;
  }
}

alert(max(num1, num2) );

1 Answer

When you set the function up you told it to expect t20 inputs when called (num1, num2). Initially num1 and num2 are unknown so are undefined. When you call the max function, in this case you need to provide it actual data to compare. Keep in mind that functions can also call strings and other functions as well. It's a little confusing at first, but as you work your way through the course you'll get the hang of it. This is what the challenge is looking for:

function max (num1, num2) {
  if (num1 > num2) {
    return num1;
  }
  else {
    return num2;
  }
}

alert(max(600, 900));

Test it with different value inputs for num1 and num2