Scope In JS let a=4; console.log(a); In the above code snippet we haven't used any { } to write the code but does this mean that we are not using any scope here NO! code is actually executed in the global execution context. The scope is the current ...