Quick tips to learn this keyword in JavaScript

this keyword in javascript

Whether you use any JS framework or someone who had used the basic event-handlers in JavaScript/Jquery, you would be very familiar with this keyword. Now, it is common in other languages too but it’s a little different in JavaScript. This is one of the fundamental topics but still unclear for … Read more

How to find unused npm packages?

Unused Dependencies

With the wide availability of packages in NPM, we very often tend to add plenty of packages. With time, and due to poor management of code, the dependency tree grows and adds extra weight to the bundle. Identifying and removing unused dependencies manually would be a hideous process. Thankfully, we … Read more