SPShivam Pandeyinrisehoneix.hashnode.dev路Sep 13, 2022 路 3 min readPrototypes In JavaScriptWhat is Prototypes In JavaScript ?馃ケ And What is Prototype Chain Prototype is a Machanism in JavaScript Which help's Object's to inherit the Features. Prototype itsSelf an Object So This prototype will have it's Own Prototype, Making What's Called ...00
SPShivam Pandeyinrisehoneix.hashnode.dev路Sep 13, 2022 路 3 min readJavascript Interview Cheat SheetWhat is Call Stack ? Call stack is a mechanism for an Interpreter to keep track of its place in script that calls multiple functions - What function is currently being run and what function are called from within that functions When we Call a func...00
SPShivam Pandeyinrisehoneix.hashnode.dev路Sep 11, 2022 路 1 min readHoisting In JavaScriptWhat is Hoisting ? Hoisting is Term We use for the Execution of something before it's declaration in coding Mean's If We Execute a function before it's declaration is called Hoisting. host("shivam"); function host (test) { console.log( ` my nam...00
SPShivam Pandeyinrisehoneix.hashnode.dev路Sep 11, 2022 路 1 min readJavaScript Call StackWhat is Call Stack ? Call stack is a mechanism for an Interpreter to keep track of its place in script that calls multiple functions - What function is currently being run and what function are called from within that functions When we Call a func...00
SPShivam Pandeyinrisehoneix.hashnode.dev路Sep 6, 2022 路 2 min readWhy Javascript is single Threaded and Synchronuswhy JavaScript Single Threaded ? Javascript is Single Threaded Language due to having Single call stack from V8 engine. Which run's javascript in browser. And because It's has a single Call stack it's make javascript Synchronous also. Why it's go...00