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 trialSibin Lu
2,945 PointsWhat 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
serhiipanchyshyn
2,485 PointsThe 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
Treehouse TeacherIt 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.
Sibin Lu
2,945 PointsThanks:)
Sibin Lu
2,945 PointsSibin Lu
2,945 PointsThanks:)