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 Functions Pass Information Into Functions Create a max() Function

Javi Caballero
Javi Caballero
7,422 Points

Finally, call the max function with two number arguments. Display the result of the function in the browser's JavaScript

Why can't it find the variable num2?

script.js
function max(num2, num3){
  if (num2>num3){
    return num2;
  }else{
    return num3;
  };
};
console.log(max(2,3));

function max(num2, num3){
  return num2 + num3;
}

console.log( max(num2, num3) );
Javi Caballero
Javi Caballero
7,422 Points

I realized that when I put the variables in for the console, I made a mistake. But now it is saying that the 'max' function doesn't seem to work...

1 Answer

Jason Anders
MOD
Jason Anders
Treehouse Moderator 145,858 Points

Hi Javier Caballero

You have everything correct, but you also have extra code that is not asked for or needed and this is what is causing the errors. If you delete the last 4 lines of code (not sure why they are even there?), everything works. Just delete everything after the line console.log(max(2,3));

Keep coding! :) :dizzy: