SKShrawan Kansiinkansi.hashnode.dev·Feb 5, 2023 · 4 min readV8 JavaScript EngineThe V8 JavaScript Engine is a powerful, open-source JavaScript engine developed by Google. It was designed to interpret and execute JavaScript code efficiently and quickly, making it ideal for use in web browsers, servers, and other applications. One...00
SKShrawan Kansiinkansi.hashnode.dev·Jan 20, 2023 · 4 min readJavaScript Interview QuestionsQ1. why do we call javaScript a dynamic language? -> JavaScript is a dynamic language that means data types of the variable can change during the runtime. EX:- var x = 0 //number x ++; x = "text1"; // stirng x = true // boolean Q2. How does ja...00
SKShrawan Kansiinkansi.hashnode.dev·Jul 28, 2022 · 2 min readHow to upload GitHub project using terminalHow to upload git-hub project using terminal Follow the steps given below to upload your first Project files to GitHub. First of all you need to install git on your system. Install the git in default setting, after installing git you need to set your...00
SKShrawan Kansiinkansi.hashnode.dev·Jul 24, 2022 · 2 min readMarkdown In briflyMarkdown has gained popularity because it's widely accepted across platforms. You can use markdown to write content that can be convert in plain text into a blog and beautiful page. What is Markdown? Markdown is a lightweight markup language that yo...00
SKShrawan Kansiinkansi.hashnode.dev·Jul 22, 2022 · 5 min readPseudo-classes element in CSSPseudo -Classes CSS pseudo-classes are used to add special effects to some selectors. You do not need to use JavaScript or any other script to use those effects. Pseudo class selectors are CSS selectors with a colon preceding them. You are probably v...00