MVManoj Vermainmanojv.hashnode.dev·Sep 11, 2023 · 2 min readAll Array method in JavaScriptpush(element1, element2, ...): Adds one or more elements to the end of an array. pop(): Removes and returns the last element of an array. unshift(element1, element2, ...): Adds one or more elements to the beginning of an array. shift(): Removes an...00
MVManoj Vermainmanojv.hashnode.dev·Aug 26, 2023 · 5 min readCSS Pseudo cheat sheetSimple selectors SelectorSyntaxExample Elementelementdiv { Class.class.alpha { } ID#id#alpha { } Universal** { } Variations of simple selectors ElementsSyntaxExampleDescription Two classes.first-class.second-class.alpha.beta { }All...00
MVManoj Vermainmanojv.hashnode.dev·Aug 22, 2023 · 6 min readGrids and flexbox cheat sheetGrid :- The syntax for creating a grid: selector{ display: grid; /* or inline-grid */ } Grid shorthand consists of the following properties with default values: grid A grid will allow you to organize the various elements on your page. grid-templ...00