November 2017
Intermediate to advanced
670 pages
17h 35m
English
ES6 provide arrow functions (also known as fat arrow functions) that provide a more concise syntax for writing function expressions. Fat arrows indicate an anonymous function and allow us to not type the keywords function and return:
const add = a => b => a + b;add2 = add(2);