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 Arrow Functions Create an Arrow Function

KJ Lee
KJ Lee
1,059 Points

I am lost. What would the final code be here?

Anyone know what the final code would be here and why?

script.js
greet('cool coders');

function greet(val) {
  return `Hi, ${val}!`;
}

const greeting = ('Hi John') =>  {
  return "Hi John" 
Blake Larson
Blake Larson
13,014 Points

You don't have to create a new function. They want you to change the syntax of the original greet function. So keep the code in the greet function the same but change the function keyword to the syntax you have in the greeting method.

Then make should to follow the tip of declaring arrow functions before calling them.

1 Answer

Steven Parker
Steven Parker
229,732 Points

The hint about "hoisting" lets you know that the new function needs to be first. And since you're "converting", you won't keep the old one.

But the new version needs to do the same job as the original function did, using the same argument and building the same final string using it.