Monads made simple in JavaScript

Note: This is part of the “Composing Software” series on learning functional programming and compositional software techniques in… Read more

Similar

KISS the JavaScript

I used to see this quote and say "When I can Write Some Awesome Code Why Should I Keep it simple after all it is my code I have comments Every where so no problem for me to understand it later"... (more…)

Read more »

JavaScript Pipeline Operator

The experimental pipeline operator | (currently at stage 1) pipes the value of an expression into a function. This allows the creation of chained function calls in a readable manner. The result is syntactic sugar in which a function call with a single arg... (more…)

Read more »