// lexical environment function a() { var b = 10; c(); function c() { console.log(b); } } a();
`the association of Identifiers to specific variables and functions based upon the lexical nesting structure of ECMAScript code.`