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

idriss Elouilani
PLUS
idriss Elouilani
Courses Plus Student 1,232 Points

I tried 2 questions is not working using alert command alert(function max(10,6));

I tried 2 questions of function max, using alert command. alert(function max(10,6)); it doesn't work

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

2 Answers

Hi

Your answer is almost perfect. Just remove the alert line.

Happy coding :)

Paul

Sorry. Wasn't worded very well. Just remove this line

alert(function max(10,6));
Maxime Duhamel
Maxime Duhamel
7,169 Points

Hi,

It doesn't work because you're confusing CREATING a function and CALLING a function.

When you create it, you need to tell javascript >>> function nameOfTheFunction(argument1, argument2){ ...what the function is doing and returning... }

When you calling it, javascript know it's name so just >>> nameOfTheFunction(argument1, argument2);

and it will execute your code based on how you created it.

Hope it helps.

Max