reading-notes

Code Fellows Notes

View the Project on GitHub stephnitis/reading-notes

Arrow Function Expressions

An arrow function expression is a compact alternative to a traditional function expression, but is limited and can’t be used in all situations.

There are differences between arrow functions and traditional functions, as well as some limitations:

Additional Resources:

Can I Use? JavaScript Arrow Functions by Wes Bos

CAVEATS