MGMohit Guptainthemohitgupta.hashnode.dev路Sep 11, 2022 路 3 min readjavascript interview preparation cheat sheetscope The scope is the current context of execution in which values and expressions are "visible" or can be referenced. If a variable or phrase is not in the current scope, it will not be available for use. Scopes can also be layered in a hierarchy,...00
MGMohit Guptainthemohitgupta.hashnode.dev路Aug 27, 2022 路 3 min readArray In JavaScriptwhat is Array? An array is a particular variable, which can hold more than one value: const fruits = ["Apple", "Banana", "Orange"]; why Array? As Array can store n number of values, it is easy to store and access data. for example:- suppose we h...01N
MGMohit Guptainthemohitgupta.hashnode.dev路Aug 18, 2022 路 5 min readGetting started with Tailwind CSSwhat is Tailwind CSS?馃 Tailwind CSS is a utility-first CSS framework for rapidly building custom UIs. It is highly focused on a mobile-first approach like Bootstrap. It's a customizable and low-level CSS framework that provides all the building bl...00
MGMohit Guptainthemohitgupta.hashnode.dev路Aug 12, 2022 路 6 min readMastering CSS Flexboxwhat is CSS flexbox?馃 The flexible box module, usually refer as flexbox, helps us to design a responsive website, Before the flexbox layout module there were four layout modes: Block used for sections in a webpage Inline used for text Table us...02BA
MGMohit Guptainthemohitgupta.hashnode.dev路Jul 30, 2022 路 1 min readMy HTML and CSS JourneyHey everyone, today I would like to share with you my HTML & CSS Journey at Learn Code Online ineuron.ai BootCamp on Full stack JavaScript so far I have learned new things as well as understand better thongs I already know. Things I learned CSS Pos...01M