APAmit Panditinamitkumar2344.hashnode.dev·Sep 11, 2022 · 3 min readJavascript Interview CheatsheetJavaScript Scope : What is JavaScript scope A Scope can be defined as the region of the execution, where the expressions and values can be referred to. There are different types of scopes in JavaScript that are local, global, block, function scope, a...00
APAmit Panditinamitkumar2344.hashnode.dev·Aug 27, 2022 · 2 min readJavascript ArraysJavaScript Array JavaScript array is an object that represent a collection of similar type of elements. There are 3 ways to construct array in JavaScript. JavaScript Array Literal var arrayname=[value1, value2....valueN]; JavaScript Array Direc...00
APAmit Panditinamitkumar2344.hashnode.dev·Aug 27, 2022 · 2 min readCSS SelectorsCSS Selectors are used to select the HTML elements you want to style. We can divide CSS Selectors into five Categories:- 1) CSS Element Selector 2) CSS ID Selector 3) CSS Class Selector 4) CSS Universal Selector 5) CSS Group Selectors CSS Element Sel...00
APAmit Panditinamitkumar2344.hashnode.dev·Jul 23, 2022 · 2 min readGit Basic CheatSheet#GIT BASIC CHEATSHEET Git Config set user name in commit history git config --global user.name "{name}" set user email in commit history git config --globaluser.email "{email address}" enable colorization of the command line output git config --blo...00
APAmit Panditinamitkumar2344.hashnode.dev·Jul 23, 2022 · 1 min readMarkdown Cheat SheetMarkdown is a lightweight markup language for creating formatted text using a plain-text editor. John Gruber and Aaron Swartz created Markdown in 2004 as a markup language that is appealing to human readers in its source code form. Basic Syntax H1 H2...00