When I first got started with NodeJS a few years ago, I was mortified by what is now affectionately known as “callback hell”. Fortunately… (more…)
Read more »
In the pre-ES6 era, there was only one way of declaring variables in JavaScript — being the usage of var. var has always had this special aura of misconception — this probably because of how the behaviour of variables declared with var distinguishes from... (more…)
Read more »
Also Default Args, Shorthand Properties, Computed Properties, Spread Operator, String Templates, Block Scoping. The list goes on and on … This is highlighted as red because the current version of…...
Read more »
In this article, I propose a way of writing relatively simple apps without using a fully-fledged framework. It is based on my experience during an interview process. I am not trying to persuade you… (more…)
Read more »
In this article we’ll take a look at regular expressions in and after ES6. There’s a couple of regular expressions flags which were introduced in ES6: the /y or sticky flag, and the /u or Unicode flag. Then we’ll discuss five proposals which are making th... (more…)
Read more »