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 Basics (Retired) Creating Reusable Code with Functions Create a max() Function

Raul Cirt
Raul Cirt
4,479 Points

Functions that return the highest number from 2 number arguments

I'm stuck at this and i can't get why i get a syntax error: parse error . Can anyone help me understand what i did wrong?

script.js
function max (3, 4) {
if ( 3 > 4 ) {
return 3;
} else {
return 4;
}
  return max;
}

1 Answer

Rachel Lev
Rachel Lev
14,583 Points
function max ( x, y ) {
if ( x < y ) {
return y;
}  else {
return x;
}
}