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 trial

JavaScript JavaScript Functions Pass Information Into Functions Create a max() Function

itay zelig
itay zelig
2,951 Points

how 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

script.js
function max(upper, lower){
  if (upper>lower){
  return `${upper} bigger than ${lower}.`;
  }else {
    return lower
  }
}
console.log(`max(10,5)`);

2 Answers

itay zelig
itay zelig
2,951 Points
function max(upper, lower) {
  if (upper > lower){
    return upper;
  } else {
    return lower;
  }
}
console.log(max(10,5));
Rich Donnellan
Rich Donnellan
Treehouse Moderator 27,696 Points

I 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.

itay zelig
itay zelig
2,951 Points

ok 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
Rich Donnellan
Treehouse Moderator 27,696 Points

Can you post your fix so others can benefit if they run into the same issue?