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 trialidriss Elouilani
Courses Plus Student 1,232 PointsI 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
function max (num1,num2){
if(num1>num2){
return num1;
}else{
return num2;
}
}
alert(function max(10,6));
2 Answers
paulscanlon
Courses Plus Student 26,735 PointsHi
Your answer is almost perfect. Just remove the alert line.
Happy coding :)
Paul
Maxime Duhamel
7,169 PointsHi,
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
paulscanlon
Courses Plus Student 26,735 Pointspaulscanlon
Courses Plus Student 26,735 PointsSorry. Wasn't worded very well. Just remove this line
alert(function max(10,6));