YCYash Chaudharyinyashchaudhary.hashnode.dev·Sep 11, 2022 · 4 min readJavaScript Interview CheatsheetIntroduction In this article, we'll learn about the scope and its type, single-threaded execution, call stack, and Hoisting Topic which are the common interview topics. Let's go Scope Scope refers to where something is available to us. It is defined ...00
YCYash Chaudharyinyashchaudhary.hashnode.dev·Aug 27, 2022 · 2 min readArray Methods for Javascript Beginnerslet's Talk about what is an array In JavaScript, an Array is a data structure to store multiple elements in an ordered way. Syntax // square brackets (usual) let arr = [item1, item2...]; // new Array (Recent Update) let arr = new Array(item1, item...00
YCYash Chaudharyinyashchaudhary.hashnode.dev·Jul 23, 2022 · 2 min readGit Cheat SheetWhat is Git and GitHub? Git is a version control system, meaning that it keeps track of every version of your codebase. This way, if you need to find or revert to a previous version, you can do so easily. Because it's so easy to use, Git has become o...00
YCYash Chaudharyinyashchaudhary.hashnode.dev·Jul 23, 2022 · 2 min readMarkdown - Cheat SheetWhat is Markdown and why use it? Markdown is a plain text formatting syntax designed to make internet writing easier. The Markdown theory is that plain text documents should be readable without tags, but there should still be ways to add text modifie...00
YCYash Chaudharyinyashchaudhary.hashnode.dev·Jul 21, 2022 · 2 min readCSS Selector BasicsIntroduction What are Selectors anyway? Selectors are simply referred to HTML elements on which CSS property should be applied for styling purposes. Let's discuss some of the common CSS selectors Types of Selectors 1. Universal Selector It selects a...00