I was recently trying to use a later version of Node on Repl.it. I wanted to use a package that…
Developers are probably the laziest people on the planet. And of all the things, copy-paste is our favorite keyboard shortcut.…
There are two ways to remove a property from a JavaScript object: one is the mutable way of doing it…
We are all used to using the script tag to load external JavaScript files in our HTML. Traditionally, the only…
When it comes to performance of applications, measuring performance becomes important. For anything to be optimized, it must be measured…
Writing performant code is not enough as a developer. We need to ensure that it is readable as well. And…
JavaScript promises do not have any time associated with them. We can use a .then() function and wait until the…
Having consistency and enforcing coding standards becomes very important as an application scales. It becomes important to automate the process…
Writing conditional expressions is pretty easy to do. But there is room for improvement in the way we have been…
Every now and then, you come across a JavaScript feature that vastly changes the way you write it. Destructuring, arrow…