ASAyush Sainiinayushcodes.hashnode.dev路Jul 24, 2021 路 6 min readWeb ComponentsDo you know that you can create your own components without using any front-end library or frameworks like React and Vue? And what's more interesting is that you don't need anything other than plain HTML, CSS, and JavaScript. These custom components ...00
ASAyush Sainiinayushcodes.hashnode.dev路Jun 6, 2021 路 5 min readBuild a Netflix like custom AccordionRecently I cloned the UI of Netflix's Landing Page using just React and Sass to practice CSS. Though it was simple, there were a lot of learning opportunities for someone like me to play with frontend development, and I quite enjoyed that challenge. ...01Y
ASAyush Sainiinayushcodes.hashnode.dev路May 26, 2021 路 7 min readPromise in JavascriptIn the previous post, we talked about Asynchronous Javascript. In this article you will learn: What are promises? What is fetch API? How and why fetch works differently than other web APIs like setTimeout? What is Microtask Queue and how it is diffe...00
ASAyush Sainiinayushcodes.hashnode.dev路May 17, 2021 路 6 min readAsynchronous Javascript馃帀 Brief Overview of what you will learn in this article: What is asynchronicity in Javascript? How javascript code is executed under the hood? Introduction to Web APIs like setTimeout and how they work Basics of Event Loop, Call Stack, and Callback...00
ASAyush Sainiinayushcodes.hashnode.dev路May 8, 2021 路 4 min readObject Destructuring in JavascriptIn the previous article we learned about array destructuring, now let's talk object destructuring. In most cases, it's going to be the same as array destructuring but there are a few additions to it. Object Destructuring - Basic Syntax Let's say we h...00