InterviewSolution
Saved Bookmarks
| 1. |
The Terms “scope” And “context” Refer To The Same Thing In Javascript ? |
|
Answer» FALSE, SCOPE pertains to the visibility of VARIABLES, and CONTEXT refers to the object to which a method belongs (which can be CHANGED by using call or apply). False, Scope pertains to the visibility of variables, and context refers to the object to which a method belongs (which can be changed by using call or apply). |
|