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 trialBilly Gragasin
Full Stack JavaScript Techdegree Student 4,985 PointsHow do you execute this (what I call an anonymous arrow function)? () => a + b + 100;
Please elaborate further, thank you!
2 Answers
Trevor Woodman
Courses Plus Student 13,354 PointsThat is just an arrow function without arguments. To make it do anything, the variables a
and b
have to exist:
const a = 5;
const b = 5;
() => a + b + 100;
Although written like this, the function would serve no purpose as you're not storing it anywhere or doing anything with the return value. It would add a, b, and 100 in the background and then do nothing with it.
A more logical solution would be to store the return value of the function in a variable (in our case 110
) and then do something with it (call it):
const a = 5;
const b = 5;
const c = () => a + b + 100;
console.log(c()); // 110
Billy Gragasin
Full Stack JavaScript Techdegree Student 4,985 Points"the function would serve no purpose as you're not storing it anywhere or doing anything with the return value. It would add a, b, and 100 in the background and then do nothing with it."
- solved! Thanks a lot!