4.6.3. JavaScript Execution Contexts
Each time
the JavaScript interpreter begins to execute a function, it creates a
new execution context for that function. An
execution context is, obviously, the context in which any piece of
JavaScript code executes. An important part of the context is the
object in which variables are defined. Thus, JavaScript code that is
not part of any function runs in an execution context that uses the
global object for variable definitions. And every JavaScript function
runs in its own unique execution context with its own call object in
which local variables are defined.
An interesting point to note is that JavaScript implementations may
allow multiple global execution contexts, each with a
different global object. (Although, in this
case, each global object is not entirely global.)[14] The obvious
example is client-side JavaScript, in which each separate browser
window, or each frame within a window, defines a separate global
execution context. Client-side JavaScript code in each frame or
window runs in its own execution context and has its own global
object. However, these separate client-side global objects have
properties that link them to one another. Thus, JavaScript code in
one frame might refer to another frame with the expression
parent.frames[1], and the global variable
x in the first frame might be referenced by the
expression parent.frames[0].x in the second frame.
You don't need to fully understand how separate window and
frame execution contexts are linked together in client-side
JavaScript right now. We'll cover that topic in detail when we
discuss the integration of JavaScript with web browsers in Chapter 12. What you should understand now is that
JavaScript is flexible enough that a single JavaScript interpreter
can run scripts in different global execution contexts and that those
contexts need not be entirely separate -- they can refer back and
forth to each other.
This last point requires additional consideration. When JavaScript
code in one execution context can read and write property values and
execute functions that are defined in another execution context,
we've reached a level of complexity that requires consideration
of security issues. Take client-side JavaScript as an example.
Suppose browser window A is running a script or contains information
from your local intranet, and window B is running a script from some
random site out on the Internet. In general, we do not want to allow
the code in window B to be able to access the properties of window A.
If we allow it to do this, it might be able to read sensitive company
information and steal it, for example. Thus, in order to safely run
JavaScript code, there must be a security mechanism that prevents
access from one execution context to another when such access should
not be permitted. We'll return to this topic in Chapter 21.