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

Francesco Miceli
Francesco Miceli
2,527 Points

Create a function named max that accepts two numbers as arguments

Hi. It doesn't work. Can somebody explain me where is the issues? Thanks

script.js
const max(n1,n2){

  if( n1 > n2){
    return n1;
  } else {
    return n2;
  }

}

console.log(max(10,5));

3 Answers

Rick Gleitz
Rick Gleitz
47,522 Points

HI Francesco,

It took me a minute, but I finally saw that you used const, which is for creating variables. Use function instead and it should work. Hope this helps!

Francesco Miceli
Francesco Miceli
2,527 Points

Oh my God. I'm ashamed for the question. Thanks!

You have solved the hard part! just Double check the syntax of writing a function in JavaScript and you should be fine. You are ask to Create a function named max that accepts two numbers as arguments. I should see the keyword function in your solution or you can make it an arrow function

Here is another way using Arrow function expressions

const max = (n1,n2) =>{ 

  if( n1 > n2){
    return n1;
  } else {
    return n2;
  }
}

console.log(max(10,5));