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 trialJohn White
7,101 PointsThe 'max' function isn't rendering a number
I'm trying to figure out why my function isn't rendering
x = max(2, 5);
function max(a, b) { if (b > a) { return max; } else { return false; } };
Thanks,
John
x = max(2, 5);
function max(a, b) {
if (b > a) {
return max;
} else {
return false;
}
};
2 Answers
doesitmatter
12,885 Pointsvar x = max(2, 5);
function max(a, b) {
if (b > a) {
return b;
} else {
return a;
}
};
this returns the maximum value out of a and b, your method doesnt work because it was returning the function itself if b > a and false otherwise
Ivan Bagaric
Courses Plus Student 12,356 Pointsfunction max(a, b) {
return (a > b) ? a : b;
}
var x = max(2, 5);
doesitmatter
12,885 Pointsdon't think a beginner should use the conditional (ternary) operator yet, but it is the shortest solution
Ivan Bagaric
Courses Plus Student 12,356 PointsOh ye, you are right..
then it should be as you post:
function max(a, b) {
if (a > b) return a;
else return b;
}