KCKhushi Chauhaninkhushichauhan425.hashnode.dev·Jan 17, 2023 · 4 min readArray Methods in JavaScriptArray An array is a single variable, which holds more than one value. A pair of square brackets [ ] can be used to symbolize an array in JavaScript. Syntax const array_name = [Item1,Item2,Item3,....]; Example const fruit = ['apple','mango','grapes',...00
KCKhushi Chauhaninkhushichauhan425.hashnode.dev·Dec 6, 2022 · 4 min readGit and Github for BeginnersHey Everyone!!! In this article, we are going to discuss about git and github, various commands and their uses. We will also discuss about how to create a git repository, push code, create branches and other various operations in github. So. let's d...02GS
KCKhushi Chauhaninkhushichauhan425.hashnode.dev·Nov 25, 2022 · 3 min readCSS Media QueriesThe Media Query in CSS is used to create responsive web pages. It means that the view of the page depends on the size of the screen on which the web page is being viewed. Media Queries has made possible to define different style rules for different ...010
KCKhushi Chauhaninkhushichauhan425.hashnode.dev·Nov 24, 2022 · 2 min readPositioning in CSSWhen we want to design some complex layouts, we need to change the document flow and modify the default settings. In order to implement such complex layouts, we have the concept of positioning in CSS. Here in CSS, we have the position property. The...020
KCKhushi Chauhaninkhushichauhan425.hashnode.dev·Nov 23, 2022 · 2 min readBox Model in CSSAll the HTML Elements can be considered as boxes. The CSS Box Model is defined as a box that wraps around every HTML Element. It consists of a content, padding, border and margin. The figure below represents a box model in CSS. The different parts...00