V8 EngineV8 is open source high-performance javascript engine. it compiles and executes javascript code It is used in chrome browser and NodeJS and it is written in C++. V8 is high performed engine because it combines two parts of the engine the compiler and ...Jan 9, 2023·2 min read
Git CheatsheetGit is a distributed version control system that allows developers to collaborate on large or small projects. To get started with git use the following commands. Setting git username : git config --global user.name "<git user name>" Setting git user ...Jul 26, 2022·2 min read
CSS SelectorsSelectors Selectors gives an option to select a html element from the DOM and apply styles and animations to it, to make it look cool. Simple selectors simple selectors selects element based on universal ,tag, id and class. so that we can style ever...Jul 23, 2022·2 min read
Positioning in CSSAs a developer, once in your lifetime, you would've tried to position an element and see your web page break. Let's position that site better with these methods. Position: absolute; Gives you the control of the element to be placed anywhere in the p...Jul 22, 2022·2 min read