Callback Function in JavaScriptWhat are Callback functions? Functions that are passed as an argument to another function are called callback. It is invoked inside the outer function to which it is passed as an argument to complete some action, routine, or event. And the function i...Oct 18, 2022·2 min read
Execution context in JSWhat is Execution Context? Whenever you write a piece of code, your code is in some memory that memory is called the “execution context”. JavaScript is a synchronous, single-threaded language. It can only execute one command at a time and in a specif...Oct 7, 2022·3 min read
Guide on Closures in JavaScriptIn this article I will try to clarify most of things about closures.Oct 6, 2022·2 min read
Conditional statements in JavaScriptGuide on Conditional statements in JavaScriptSep 30, 2022·3 min read