(1)
What kind of scoping does JavaScript use?
Answer: Lexical
Answer: Lexical
Answer: Reference the current scope chain
Answer: Both Function objects and Scope where function’s variables are resolved
Answer: Graphics
Answer: Dynamically generated graphics
var scope = "global scope"; function checkscope() { var scope = "local scope"; function f() { return scope; } return f; }
Answer: Returns the value in scope
Answer: Functions are executed using scope chain
Answer: Dynamic scoping
Answer: Variables can be declared outside the scope
Answer: Html