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 trialitay zelig
2,951 Pointshow to pass two numbers into the function?
I try to combine numbers in the function method and i didn't understand what am i doing wrong. please help:P
function max(upper, lower){
if (upper>lower){
return `${upper} bigger than ${lower}.`;
}else {
return lower
}
}
console.log(`max(10,5)`);
2 Answers
itay zelig
2,951 Pointsfunction max(upper, lower) {
if (upper > lower){
return upper;
} else {
return lower;
}
}
console.log(max(10,5));
itay zelig
2,951 Pointsok i find the way so tnx anyway. i understand that i did an backticks in the console.log and that just not true
Rich Donnellan
Treehouse Moderator 27,696 PointsCan you post your fix so others can benefit if they run into the same issue?
Rich Donnellan
Treehouse Moderator 27,696 PointsRich Donnellan
Treehouse Moderator 27,696 PointsI updated with code formatting. Check out the Markdown Cheatsheet below the Add an Answer submission for syntax examples, or choose Edit Answer from the three dots next to Add Comment to see how I improved the readability.