desi-dev.hashnode.devJavaScript Promises ExplainedWhat is a Promise? Promises are a JavaScript feature that allows us to handle asynchronous tasks. This means you can make an API call or perform a long-running task without stopping the execution of o5d ago·4 min read
desi-dev.hashnode.devJavaScript Arrays 101An array is part of a non-primitive data type family in JavaScript(JS), which lets us store a collection of values, which can be of similar or different types const arr = [1,3,5,6,7] Now, let's undFeb 25·2 min read
desi-dev.hashnode.devCSS Selectors 101: Targeting Elements with Precisionlet understand how can we select elements in better ways these is element selector using which we can select tag likediv{ background : #000;} this will give background color to every div there is class selector . using which you can select multiple...Jan 27·2 min read
desi-dev.hashnode.devUnderstanding HTML Tags and ElementsLet understand how this work html which stands for Hypertext Markup Language this is a markup language that is used to create structure using a special char which is know as tag which is written like this <tagname> eg . <div> this tags comes in to ty...Jan 27·2 min read
desi-dev.hashnode.devHow a Browser Works: A Beginner-Friendly Guide to Browser Internalsbrowser is look simple and straightforward but if we look deep it has many complex systems, let’s understand how browser work in simple beginner-friendly way if we open a website browser does these workfind server using dns ==> then connect to server...Jan 27·1 min read