0 votes
in JavaScript by
What must be done in order to implement Lexical Scoping?

a) Get the object

b) Dereference the current scope chain

c) Reference the current scope chain

d) Return the value

1 Answer

0 votes
by

Answer:-  C

Reason:  In order to implement lexical scoping, the internal state of a JavaScript function object must include not only the code of the function but also a reference to the current scope chain.

...