manishdevelops-blogs.hashnode.devSpread and Rest operators in JavaScript: "Unlocking power of JavaScript"Hello fellow developers!๐ In this blog post, we're going to explore two powerful operators in JavaScript that you may have heard of: the spread operator and the rest operator. As developers, we're always looking for ways to write cleaner, more effic...Mar 12, 2023ยท9 min read
manishdevelops-blogs.hashnode.devDestructuring in JavaScript: "Simplifying Access to Object and Array Values"Hey there!๐ Destructuring objects and arrays in JavaScript is a cool feature that lets you grab specific values from them and assign them to variables easily. It's like reaching into a bag of goodies and pulling out just what you need! This feature ...Mar 9, 2023ยท8 min read
manishdevelops-blogs.hashnode.dev"Mastering Asynchronous JavaScript with Promises, Async/Await and AJAX: A Guide to Building Fast and Efficient Web Applications"Hey there!๐โโ๏ธ Thanks for joining me for the sequel of my blog. If you missed my previous post, no worries at all! You can simply visit this link to catch up before we continue on our journey together. I'm excited to have you here, so let's dive rig...Feb 28, 2023ยท16 min read
manishdevelops-blogs.hashnode.dev"Mastering Asynchronous JavaScript with Promises, Async/Await and AJAX: A Guide to Building Fast and Efficient Web Applications"Hello there ๐โโ๏ธ and welcome to my blog! I'm so glad you found your way here! let's dive into some great conversations! Now, to understand what asynchronous JavaScript code is, we first need to understand what synchronous code is. So basically the o...Feb 20, 2023ยท8 min read
manishdevelops-blogs.hashnode.devWhat is event delegation in JavaScript, why is it crucial ??๐ฅ๐Let's go deep so there are no queries. So, Event delegation is a method for managing events effectively. Instead of adding an event listener to every similar element, we can add an event listener to a parent element and then use the .target(๐ง๐ต๐ฒ ๐...Dec 26, 2022ยท4 min read