This article is Part 4 for the Series “Modern ES6+ Javascript for those who know only a little about that old Javascript.”... (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 »
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 »
Arrow functions are the new fundamental building blocks of building modern web applications. (more…)
Read more »
In "prototypical languages" like JavaScript you can use object-instances to do much anything. Typically you do this with the help of "constr... (more…)
Read more »