KMKavya M Vinkavyamvg.hashnode.dev·Jan 9, 2023 · 2 min readV8 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 ...00
KMKavya M Vinkavyamvg.hashnode.dev·Sep 16, 2022 · 3 min read# Javascript Interview Preparation CheatsheetScope Scope refers to the availability of variables and functions in certain parts of the code. There are 3 kinds of scopes in javascript Global scope Local scope Block scope Global scope When we declare variable at the top of the page , we ca...00
KMKavya M Vinkavyamvg.hashnode.dev·Aug 28, 2022 · 2 min readTailwind CSSTailwind is a CSS utility framework which makes designing web sites easier. We can just use the pre-defined set of utility classes and even configure custom styles. Let's see how we can get started with tailwind Getting started Include the tailwind ...00
KMKavya M Vinkavyamvg.hashnode.dev·Aug 14, 2022 · 1 min readHTML & CSS JourneyI started learning HTML and CSS since month as part of INeuron bootcamp, First i learnt about basic structure of html, after that tags ,attributes and elements. learnt css to style and make the website responsive. By using these built the 15 project...00
KMKavya M Vinkavyamvg.hashnode.dev·Jul 26, 2022 · 2 min readMarkdown 101Intro Markdown is a Markup language. Yeah. Weird. Let's understand what it means. Markdown language is used create a formatted text document using particular syntax like a markup language like HTML. Let's look at few most commonly used markdown synt...00