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 Getting Started With ES2015 Create Functions Using Arrow Syntax Review JavaScript Arrow Functions

Sibin Lu
Sibin Lu
2,945 Points

What answers should I fill in the blank for this question?

I cannot figure out what should I fill in the blank with this question. Who could help me with this? Thank you very much.

2 Answers

The first question is asking to assign parameters to the function. The second question just for syntax.
Hope it helps :)

https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions/Arrow_functions

const remove = (string, letter)  => {
  let regex = new RegExp(letter, 'g');
  return string.replace(regex,'');
}

const add = (num1, num2) => {
 return num1 + num2; 
};
Lee Vaughn
seal-mask
STAFF
.a{fill-rule:evenodd;}techdegree seal-36
Lee Vaughn
Treehouse Teacher

It is asking you to create an arrow function.

Hint: the part that is missing (that you need to type) is directly related to the arrow part of an arrow function.