Loading...
Loading...
const x = "global"; function outer() { const y = "outer"; function inner() { const z = "inner"; console.log(z); console.log(y); console.log(x); console.log(w); } inner();}outer();no scopes yet
no lookup in progress
No output yet.