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 trialCamille Foor
6,956 PointsCan't use actual numbers?
I could only pass task 1 when I used 'a' and 'b' instead of actual numbers - it said I had a syntax error when I used numbers. Could someone point out what I am doing wrong on task 2?
function max(a, b) {
if (a > b){
return a;
} else {
return b; }
}
alert( max( c , d) );
Camille Foor
6,956 PointsThanks Michael!
Michael Wells
4,493 PointsMichael Wells
4,493 PointsHey Camille,
I checked the challenge and your code looks good; however, you should replace the letters 'c' and 'd' with actual numbers, then run the program to see it.
For an example: alert( max ( 2, 5 ) );