JavaScript Optimization Patterns (Part 1)

It’s been a while since my last blog post, mostly because I didn’t really have the time or the energy to sit down and write up all the stuff that I wanted to… Read more

Similar

Mastering Modular JavaScript

Modular JavaScript is a book series focusing on building small interconnected ES6 JavaScript modules that emphasizes on maintainability. Mastering Modular JavaScript is the second book in the series, and it discusses module thinking in detail. Mastering M... (more…)

Read more »

JavaScript Promises: The right way

Are you still writing your async JavaScript code using callbacks or async library? It's the time to start to Promises! What is a Promise? As the word says, Promise is something that can be available now, or in future, or newer. When someone promises you ...

Read more »