Is lexical environment and scope in javascript one and the same thing?
|
|
|
Here's what the spec says about lexical environments:
Based on that, I would say yes, that's what people are usually talking about when they say "scope". Although it could probably be argued that a "scope" is actually defined as a "Declarative Environment Record":
If you think of a "scope" as a thing that contains bindings between identifiers and values, then the 2nd definition probably fits better. If you think of it as something that is aware of its ancestor scopes, then the first definition fits better. Edit: and a third option is "Execution Context". |
||||
|
|
|
In lexical scoping the identifiers refers to its nearest lexical environment. |
|||
|
|