Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Functional-Light JavaScript

Functional-Light JavaScript

What are the core principles of FP that JavaScript developers can use to make more understandable and reason-able code?

Kyle Simpson

July 27, 2016
Tweet

More Decks by Kyle Simpson

Other Decks in Programming

Transcript

  1. Closure is when a function "remembers" the variables around it

    even when that function is executed elsewhere.
  2. RECAP: ‣ Pure Functions (side effects) ‣ Composition ‣ Immutability

    ‣ Closure ‣ Recursion ‣ Lists (map, filter, reduce)
 (fusion, transducing)