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 trialVolodymyr Ruban
3,730 Pointsplease help to find the correct answer thank you
function nature (tree, flower) {
Let result;
if (tree < flower) {
result = "flower";
} else {
result = 'tree'; }
return result;
}
nature (4, 6);
1 Answer
Steven Parker
231,248 PointsThere'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
Sacha U
6,830 PointsSacha U
6,830 PointsI 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 :)