DDIwakar⚡7indiwakar7.hashnode.dev·Aug 16, 2023 · 2 min readVarious Doms In HtmlDOM: A document object model (DOM) is a interface for html document and it represents the tree of objects inside the html document. -- DOM can be accessed by the "JAVASCRIPT" to manupulate elements in html -- Browser creates the initial DOM tree SHAD...00
DDIwakar⚡7indiwakar7.hashnode.dev·Jul 20, 2023 · 2 min readNode Js-1-- node js is a javascript runtime environment that runs JS outside the web browser. we can run node js in -REPL ( read-eval-print-loop), -CLI (command line interface) COMMON JS MODULE : DEFAULT EXPORTS: --how to export one module also called (defaul...00
DDIwakar⚡7indiwakar7.hashnode.dev·Jun 27, 2023 · 2 min readcreating multiple obj's in JS.--- there are multiple methods to create multiple obj's. 1) By using object literals. 2)By using the factor function. 3)By using a constructor function. 4) By using JS classes. ---object literal - ex:- let obj = { name : "something", age : 00, journe...00
DDIwakar⚡7indiwakar7.hashnode.dev·Jun 11, 2023 · 3 min readflexbox 📤📥Flexbox is a layout method that helps to arrange the HTML elements in rows (horizontally)➡️ or columns (vertically)⬇️ flexbox properties: Providing display property with the value flex converts the element into a Flex Container. and child elements w...00
DDIwakar⚡7indiwakar7.hashnode.dev·Jun 9, 2023 · 1 min readCss box model-- By default in the CSS box model, the width and height you set to an element is applied only to the element's content. ---The width and height properties include the content, but they do not include. the padding, border, or margin. box-sizing:conte...00