#Arrow Functions
Arrow functions (also known as fat arrow functions) are awesome. They do two main things for you. Create a shorter syntax, and lexically scope this.
##Shorter syntax
//ES5
[1, 2, 3].map(function(n){ return n + 1 } // [2, 3, 4]
//ES6