SCShubham Chandelinshubham8622.hashnode.dev·Aug 27, 2022 · 8 min readJavaScript ArraysWhat is an Array? The Array object is used to store multiple values in a single variable const cars = ["car", "bus", "truck"]; Creating an Array There are three ways to create an array: Syntax: const array_name = ["item1", "item2", "item3"]; const...00
SCShubham Chandelinshubham8622.hashnode.dev·Jul 24, 2022 · 3 min readGIT basic commands to push code on GitHub.What is GIT? Git is a tool used for source code management. It is a free and open-source version control system used to handle your projects. Git is used to tracking changes in the source code, enabling multiple developers to work together on non-lin...00
SCShubham Chandelinshubham8622.hashnode.dev·Jul 23, 2022 · 3 min readMarkdown cheat sheetToday, we are going to read about Markdown and I am going to create a Markdown Cheat Sheet. What is Markdown? Should we need to know about Markdown? Where to use Markdown? You will learn the Markdown’s major commands that will help you create an Git...00
SCShubham Chandelinshubham8622.hashnode.dev·Jul 17, 2022 · 2 min readCSS PositionsThere are 5 types of positions in CSS 1) Static 2) Relative 3) Fixed 4) Absolute 5) Sticky 1) If we talk about static then this property is default. You cannot use the top, bottom, left, and right properties in static positioned elements div.static {...00
SCShubham Chandelinshubham8622.hashnode.dev·Jul 17, 2022 · 2 min readPseudo elements and classesLet's first talk about the Pseudo classes There are some Pseudo classes below:- NOTE: Below things will not work in this editor. If you want to test these things just use any editor in your desktop. I am taking example of anchor tag. 1) / unvisited l...00