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 trialJavi Caballero
7,422 PointsFinally, 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?
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) );
1 Answer
Jason Anders
Treehouse Moderator 145,860 PointsYou 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! :)
Javi Caballero
7,422 PointsJavi Caballero
7,422 PointsI 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...