KSKoushik Sahainksaha.hashnode.dev路Sep 11, 2022 路 1 min readSingle-threaded in JavaScriptNote: JavaScript is a single-threaded, non-blocking, asynchronous, concurrent a programming language with lots of flexibility. JavaScript is a single-threaded language because while running code on a single thread, it can be really easy to implemen...00
KSKoushik Sahainksaha.hashnode.dev路Sep 10, 2022 路 1 min readLexical Scope in JavaScript 馃檪Lexical scope is the ability for a function scope to access variables from the parent scope. We call the child function to be lexically bound by that of the parent function. The ability of inner function to access outer function element or parent ele...00
KSKoushik Sahainksaha.hashnode.dev路Sep 10, 2022 路 2 min readScope in JavaScript 馃槑In JavaScript 3 types Scope is available. Global Scope. Block Scope. Functional Scope. 1. Global Scope : In a browser, global scope is the window object. In Node.js, global object represents the global scope. To add something in global scope, yo...00
KSKoushik Sahainksaha.hashnode.dev路Aug 28, 2022 路 2 min readJavaScript ArrayWhat is Array ? An array is a special variable, which can hold more than one value. let newArray = [12, "Koushik", null, false, 100] All Array Methods In JavaScript I will Discuss about some of them. How to Create an Array ? let newArray = [1...00
KSKoushik Sahainksaha.hashnode.dev路Aug 13, 2022 路 2 min readTailwind CSSTailwind CSS works by scanning all of your HTML files, JavaScript components, and any other templates for class names, generating the corresponding styles and then writing them to a static CSS file. This is for beginners Get started Installation : by...00