Slides for my talk at #Codemotion2016
View Slide
Why?
$.each(/*…*/);
Native JavaScriptVS.____________________.js
Native JavaScriptVS.Underscore.js
Array.prototype.filter()
ES2015 Arrow Functions =>
Lambda calculusx, y → x + yx → y → x + y
Arrow functions(x, y) => x + yx => y => x + y
Array.prototype.forEach()
Array.prototype.map()
Array.prototype.find()**ES2015 (ES6)
Array.prototype.includes() /String.prototype.includes()**ES2016 (ES7)
Array.prototype.reduce()
Array.prototype.some()
Array.prototype.every()
Chaining Functions!
Show me the !