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

Volodymyr Ruban
Volodymyr Ruban
3,706 Points

please help to find the correct answer thank you

script.js
function nature (tree, flower) {
  Let result; 
  if (tree < flower) {
    result = "flower";
} else {
result = 'tree'; }
  return result;
}
nature (4, 6);
Sacha U
Sacha U
6,061 Points

I am still quite new to this, but I think you need to at least put a = after result. I tried your code with the following line: let result = ''; And then it did work. Hope this helps :)

1 Answer

Steven Parker
Steven Parker
229,744 Points

There's a few issues here:

  • the instructions say to "Create a function named max", but this one is named "nature"
  • the keyword "let" should not begin with a capital letter
  • the parameter names should not be converted into strings with quotes or apostrophes
  • for task 1 you only need to define the function, you don't need to call it