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

The 'max' function isn't rendering a number

I'm trying to figure out why my function isn't rendering

x = max(2, 5);

function max(a, b) { if (b > a) { return max; } else { return false; } };

Thanks,

John

script.js
x = max(2, 5);

function max(a, b) {
  if (b > a) {
    return max;
  } else {
    return false;
  }
};

2 Answers

var x = max(2, 5);

function max(a, b) {
  if (b > a) {
    return b;
  } else {
    return a;
  }
};

this returns the maximum value out of a and b, your method doesnt work because it was returning the function itself if b > a and false otherwise

function max(a, b) {
  return (a > b) ? a : b;
}

var x = max(2, 5);

don't think a beginner should use the conditional (ternary) operator yet, but it is the shortest solution

Oh ye, you are right..

then it should be as you post:

function max(a, b) {
   if (a > b) return a;
   else return b;
}