Answers an arrow function use case question (#145)

* Answers an arrow function use case question

### Can you offer a use case for the new arrow => function syntax? How does this new syntax differ from other functions?

* Update javascript-questions.md

* Update javascript-questions.md
This commit is contained in:
Filip Barakovski 2019-01-15 05:54:31 +01:00 committed by Yangshun Tay
parent 70af753f0c
commit b64b07e656
1 changed files with 1 additions and 1 deletions

View File

@ -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)