ES6 Arrow Functions
An introduction to Arrow Functions and their importance.
We'll cover the following...
We'll cover the following...
JavaScript ES6 introduced arrow functions expressions, which are shorter than a function expressions.
You can remove the parentheses in an arrow function expression if it only has one argument, but you have to keep the parentheses if it gets multiple arguments:
...