Programming Languages that Developers should Explore in 2024-2025: Stay Ahead of the CurveJul 23, 2024·2 min read·1.8K
Fix the Wifi/Bluetooth Not Working Issue in Laptop.Intro If you're a Windows 11 user who's been going through the frustrating issue of Wi-Fi and Bluetooth randomly disconnecting, you're not alone. I've been there too, trying every trick from the internet which I could find, from updating drivers to r...Sep 24, 2024·2 min read·176
Why do we need CORS to access CDN links?Intro When you use a Content Delivery Network (CDN) to host static assets for your website, like images or Javascript files, those files are being served from a different domain than your main website. This difference in domain can cause security iss...Apr 20, 2024·2 min read·37
4 Habits to Avoid Bugs related to Hoisting in your JavaScript CodeDeclaring variables at the beginning of the scope By declaring variables at the beginning of the scope you ensure that these variables are accessible throughout that scope, avoiding any confusion caused by hoisting. const data = 12; const variable = ...Apr 15, 2024·2 min read·36
DOM Manipulation: Accessing the Elements of the Webpage.Intro ✨ In the previous blog I talked about DOM and how it helps developers in manipulating the values on the web page. This time I will share the guide on how to manipulate the data on the webpage using the JavaScript programming language. Let's get...Apr 14, 2024·4 min read·63
Easiest Explanation of DOM, Even a 6 year old can understandIntroduction When learning web development I am sure many folks have seen or heard about this term called "DOM" and many people actually take it as a scary, hard to understand topic even before they start to learn about it. In this article I will try...Apr 7, 2024·4 min read·1.1K
Async/Await in JavaScript with Easiest Explanation!Intro Before learning about async/await you should know what and how promises work in JavaScript. You can read about promises here. What is async keyword? async/await were introduced in 2017, Before that time managing asynchronous operations in javaS...Jan 24, 2024·4 min read·210
Promises in JavaScript for BeginnersIntro When working with async code in javascript you sometimes need to wait for the code to return data before further processing of data. For example: reading a file takes some times or fetching data from the server can take time and since this is a...Jan 21, 2024·3 min read·103