7.3 Function Scope: The Call Object
As
described in Chapter 4, the body of a JavaScript
function executes in a local scope that differs from the global
scope. This new scope is created by adding the call object to the
front of the scope chain. Since the call object is part of the scope
chain, any properties of this object are accessible as variables
within the body of the function. Local
variables
declared with the var statement are created as
properties of this object; the parameters of the function are also
made available as properties of the object.
In
addition to local variables and parameters, the call object defines
one special property named arguments. This
property refers to another special object known as the Arguments
object, which is discussed in the next section. Because the
arguments property is a property of the call
object, it has exactly the same status as local variables and
function parameters. For this reason, the
identifier
arguments should be considered a reserved word and
should not be used as a variable or parameter name.
•
Table of Contents
•
Index
•
Reviews
•
Examples
•
Reader Reviews
•
Errata
JavaScript: The Definitive Guide, 4th Edition
By
David Flanagan
Publisher
: O'Reilly
Pub Date
: November 2001
ISBN
: 0-596-00048-0
Pages
: 936
Slots
: 1
This fourth edition of the definitive reference to
JavaScript, a scripting language that can be embedded
directly in web pages, covers the latest version of the
language, JavaScript 1.5, as supported by Netscape 6 and
Internet Explorer 6. The book also provides complete
coverage of the W3C DOM standard (Level 1 and Level 2),
while retaining material on the legacy Level 0 DOM for
backward compatibility.