AVAlok Vermainalokverma.hashnode.dev·Dec 23, 2022 · 2 min readContext API in ReactJsThe Context API is a way to pass data through the component tree in React without having to pass props down manually at every level. It allows you to create a provider component that stores data and a consumer component that can access that data. Her...00
AVAlok Vermainalokverma.hashnode.dev·Sep 11, 2022 · 2 min readJavaScript Interview preparation cheatsheetScope The scope is the current context of execution in which values and expressions are "visible" or can be referenced. If a variable or expression is not in the current scope, it will not be available for use. Scopes can also be layered in a hierarc...00
AVAlok Vermainalokverma.hashnode.dev·Aug 27, 2022 · 1 min readJavaScript ArrayIn JavaScript Array is a special variable that can hold/store multiple values under a single name. Array in JavaScript can store value with any data type and can also store mixture of various data types. Creating An Array: const arrayName = [value1,...01SM
AVAlok Vermainalokverma.hashnode.dev·Jul 23, 2022 · 2 min readGlance at MarkdownMarkdown is a markup language use to add formatting elements to plain text documents. It has .md extension. Heading To make any text the heading # symbol is used. # heading ## heading ### heading #### heading Output : heading heading heading hea...00
AVAlok Vermainalokverma.hashnode.dev·Jul 23, 2022 · 2 min readQuick Git Explanation with Cheat sheetGit: Git is a version control system. It tracks the changes in the repositories and reserves the log of the changes. Git put files at three stages: untracked files staged files committed files Some of the basic git commands are: git config -- glob...00