LAMBDA
LAMBDA expressions reduce the structure of functions to the most important pieces. ES5 functions function myFunc(num)
ES6 lambda expressions/Arrow function num => console.log(num)
LAMBDA expressions reduce the structure of functions to the most important pieces. ES5 functions function myFunc(num)
ES6 lambda expressions/Arrow function num => console.log(num)