ABAditya Bankarinaditya-199.hashnode.dev·Sep 10, 2022 · 6 min readJavaScript Interview Preparation CheatSheetTopics: Scope (Global, Local, Block, Lexical Environment, Scope chaining) Single Thread Call Stack Hoisting Scope: A lot of (JavaScript) developers talks about “the scope”, but what is it? Scope tells us about the reach of a particular variable in ...00
ABAditya Bankarinaditya-199.hashnode.dev·Aug 27, 2022 · 8 min readArrays in Javascript HandbookArray In JavaScript, arrays aren't primitives but are instead Array objects. Arrays is a collection of different data types elements in it. Different data types elements can be numbers, strings and objects, etc. How to Recognize an Array How do I kno...00
ABAditya Bankarinaditya-199.hashnode.dev·Aug 21, 2022 · 2 min readTailwind CSSWhat is Tailwind CSS -Tailwind is very easy to use and to get your grasp on if you have good knowledge about CSS. Since it is that same CSS we are writing but in short, there wasn't anything extra that was needed to learn before I could start learnin...00
ABAditya Bankarinaditya-199.hashnode.dev·Aug 21, 2022 · 8 min readCss Flexbox CheatsheetCSS FLEXBOX CHEATSHEET Flexbox Cheatsheet Display Enable flex container, inline or block. display:flex <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="view...00
ABAditya Bankarinaditya-199.hashnode.dev·Jul 23, 2022 · 2 min readGit Made EasySo What is Git? Git is a version-control system for tracking changes in computer files and coordinating work on those files among multiple people. Git is a Distributed Version Control System. So Git does not necessarily rely on a central server to st...00