Detect User’s Browser & OS Using 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
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
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