Is there way to see the scope chain objects in chrome devtools or in any browser.
For the below code I can only find the global variable and also for nested functions as well, I am only seeing the global variable. Can anyone help with this. Please guide me if I am not in the right direction.
E.g.
var global = "Global var";
function f1() {
var local = "Local var";
};