NSNisarg Shahinnisarg18.hashnode.dev·Aug 27, 2022 · 7 min readArrays in JavaScriptWhat is an Array? Array is a data structure that is used to store a collection of multiple items in a single variable. The collection can have any type of data such as string, number, boolean, etc. Example const array1 = ["Hello", 10, 20, "World", tr...00
NSNisarg Shahinnisarg18.hashnode.dev·Jul 23, 2022 · 3 min readPosition in CSSWhat is position and why is it used? Position property in CSS is used to set position of elements in the webpage. Values Static Relative Absolute Fixed Let's try to understand them one-by-one 1. Static This is the default value every element has in...00
NSNisarg Shahinnisarg18.hashnode.dev·Jul 23, 2022 · 3 min readBasic Commands in GitWhat is Git? Git is a free and open source distributed version control system designed to handle everything from small to very large projects with speed and efficiency. You can download git from here : Git Download Difference between Git and Github P...00
NSNisarg Shahinnisarg18.hashnode.dev·Jul 23, 2022 · 3 min readMarkdown Cheat SheetWhat is Markdown? Markdown is a lightweight markup language that you can use to add formatting elements to plaintext text. It is used by the developers to make a "readme.md" file which has all the details or how to use guide for a particular project....00
NSNisarg Shahinnisarg18.hashnode.dev·Jul 22, 2022 · 6 min readPseudo-Classes and Pseudo-Elements in CSSPseudo Classes A CSS pseudo classes is a special keyword used to specify a particular state of the selected element. For example, ":hover" can be used to change a button's color when the user's pointer hovers over it. button:hover { background-colo...00