|
March 22, 2001 The Scope of Global Code Tips: March 2001
Yehuda Shiran, Ph.D.
|
|
The scope of global code includes two objects: the global object and the variable object. When we say that these objects are the scope of global code, we mean that the browser can access properties of these two objects only. Some of them are real properties and some are methods. The global object is the browser window object, the one you query the location of by window.location(). The variable object holds all global variables and methods. A new object is created on the entry point to the global code, and is destroyed upon exit.
The
People who read this tip also read these tips: Look for similar tips by subject: |