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 trialRense Zwarteveen
4,925 PointsStuck at max functions
i have to make a alert dialog to few the result. but i don't know how. Can anyone help me. beneath my written code:
function max(ten, five) { if (ten > five) { return ten; } return five; } alert(math.random(10, 5);
function max(ten, five) {
if (ten > five) {
return ten;
} return five;
}
alert(math.random(10, 5);
3 Answers
Rense Zwarteveen
4,925 PointsThanks got it.
jason chan
31,009 Pointsfunction max (argument1, argument2) {
if (argument1 > argument2) { return argument1;}
return argument2;
}
max(10, 5); //Here I'm changing the value of the arguments and it will return 10
Rense Zwarteveen
4,925 PointsThanks for the quick answer. But i have to make the next challenge.
Beneath the max function you just created, call it with two numbers and display the results in an alert dialog. Pass the result of the function to the alert method.
For example, to display the results of the Math.random() method in an alert dialog you could type this:
Do you know, how to do this? i realy don't know.