No, because the variable is only accessible from within the execution contexts that contain the variable's scope.
Put another way, the only way you can access j
is if you are accessing it from something in the scope of test
-- via an inner function, or whatever. This is because j
, in a sense, doesn't exist to objects with a wider scope, like the global object. If it were otherwise, then variable names would have to globally unique.