170 followers
Hi. I'm Erons, a Full-stack JavaScript developer. Here, I write articles on frontend and backend development.
Closures are a fundamental and powerful property that JavaScript heavily relies on and is very vital to understand. It can also be a little bit difficult to grasp its concepts especially for people new to programming. In this article, I explain with ...
In this article, I briefly discuss the bind(), call() and apply() methods in JavaScript. These methods are available to every function in JavaScript and are used to control what this in a function points to. Let's see the following examples. bind() T...