Fix Delete ‘CR’ eslint(prettier/prettier) Error (4 Ways)
Learn why the “Delete ‘CR’ eslint(prettier/prettier)” error occurs and how to resolve it in 4 different ways.
Learn the ropes, discover handy tips, and unlock cool tricks to level up your JavaScript game.
Learn why the “Delete ‘CR’ eslint(prettier/prettier)” error occurs and how to resolve it in 4 different ways.
Let’s say you want to verify the order in which the content is displayed, or you want to test the accessibility of a page when… Read More »Disable All CSS on a Page with JavaScript
Sometimes it’s possible to have Caps Lock on without realizing it. It’s even more frustrating when this happens while creating a password. That’s why some… Read More »Detect CAPS LOCK with JavaScript
Let’s find out how we can detect the user’s browser and the operating system (OS) using plain JavaScript. The Navigator To get such information, we… Read More »Detect User’s Browser & OS Using JavaScript
In this post, you’re going to learn step-by-step how to change the favicon on tab switching using plain JavaScript. We’re going to implement it so… Read More »How to Change Favicon on Tab Switching Using JavaScript
If you find yourself trying to group multiple console.log() like this: Then allow me to show you a better alternative. You can use console.group() to… Read More »Group console.logs in JavaScript
Grab a cup of your favorite warm or cold beverage because in this tutorial we’re going to build from scratch a super simple stopwatch with… Read More »Build a Super Simple Stopwatch in JavaScript
Sometimes, it becomes difficult to read numbers that contain many digits. For example, 1000 is readable but what about 1000000? Yeap, it becomes pretty tricky… Read More »Use Numeric Separators to Easily Read Big Numbers
Let’s have a look at how to run a JS file inside VS Code. To run a JS file inside VS Code first… Read More »How to Run JavaScript File Inside VS Code