diff --git a/questions/javascript-questions.md b/questions/javascript-questions.md index 7acefd26e..f1d2fd936 100644 --- a/questions/javascript-questions.md +++ b/questions/javascript-questions.md @@ -1029,7 +1029,7 @@ It's much more verbose to use inheritance in ES5 and the ES6 version is easier t ### Can you offer a use case for the new arrow => function syntax? How does this new syntax differ from other functions? -TODO +One obvious benefit of arrow functions is to simplify the syntax needed to create functions, without a need for the `function` keyword. The `this` within arrow functions is also bound to the enclosing scope which is different compared to regular functions where the `this` is determined by the object calling it. Lexically-scoped `this` is useful when invoking callbacks especially in React components. [[↑] Back to top](#js-questions)