SJSANGEETHA JULAindoawesome.hashnode.dev路Mar 25, 2023 路 15 min readAsynchronous JavaScriptMaybe you have heard the Word Javascript is a synchronous single-threaded language as it has only a single call stack and the execution of commands happens one after the other. though it is called synchronous single-threaded, it also does execute the...00
SJSANGEETHA JULAindoawesome.hashnode.dev路Feb 14, 2023 路 4 min readAll About "Lets ,const and Var In JS"馃.unlike other languages, javascript is a dynamically typed language. Dynamically-typed languages are those where the interpreter assigns variables a type at runtime based on the variable's value at the time. " MDN" which means we don't need to speci...01T
SJSANGEETHA JULAindoawesome.hashnode.dev路Sep 6, 2022 路 8 min readHoisting in JavaScript.Hoisting in Javascript 馃,what is hoisting , why I should learn this concept, what its use?. to understand hoisting we need to understand how the javascript code is executed. understanding JS code execution considering Browsers , Every Browser that w...01A