JRJanith Renukainjanithrenuka.hashnode.dev·Aug 29, 2023 · 3 min readJavascript - Execution ContextExecution context is the main and basic concept of javascript code execution. In this post, I will give you a brief explanation of the execution context and how it works. Let's get a simple code part to explain this. var a = 10; function square(num) ...00