Skip to content
 

Functional programming

If there's one programming style I like a lot, it's functional programming. Although it's not the best fit for all problems, often having means to dec…
Published:
Functional reactive programming allows us to think carefully about state and side effects. The question is, how to do that in JavaScript? Motorcycle.…
Published:
If there's one trend that has been nice to notice, it's the rise of reactive programming. You can see this in technologies like RxJS and cycle.js. To…
Published:
Dealing with the asynchronous code has always been a challenge in JavaScript. Callbacks are the classic way, and since then we've gained higher level …
Published:
If there's something that's easy, it's making mistakes while coding JavaScript. Overlook one detail and you have a runtime error! One way to deal with…
Published:
Even though you can get far with JavaScript's native functionality, eventually you'll find yourself writing little utilities to make it easier. For th…
Published:
You might have heard about Mostly Adequate Guide to Functional Programming (in JavaScript) by Brian Lonsdorf. It's one of the better known free books …
Published:
If there's one thing that has been bubbling below for a couple of years now, it must be reactive programming. There have been solutions, such as RxJS …
Published:
Back to topics