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 trialKilleon Patterson
18,528 Pointsfunction with two arguments and conditional statement testing
How do I correctly program the test and return of my two arguments?
function max(4,6) {
if (max = 4 <)
return 6;
}
2 Answers
Jason Anders
Treehouse Moderator 145,860 PointsCreating a function that takes two arguments and returns the 'max.'
First create a named function with the arguments. Next you will need an if/else statement to determine which argument is higher Then you return the argument with the max value
var max = function(a, b) {
if (a > b) {
return a;
} else {
return b;
}
};
Hope that helps.
Gregory Myers
21,988 PointsExactly what Jason said. ^ And don't forget to call the function with the parameters when you're finished!
var max = function(a, b) {
if (a > b) {
return a;
} else {
return b;
}
};
max(4, 6);