document.writeln('name=' + name);
// name =
document.writeln('notName=' + notName);
// ReferenceError: notName is not defined
Does the "name" have some special meaning in javascript? (checked in IE and FF)
Is variable called “name” always defined in Javascript?
No. However, on browsers there's a global called name
which is the name of the current window. This is a by-product of the fact that the JavaScript global object on browsers is the Window object. A bit of explanation:
In JavaScript, global variables are actually properties of something called the "global object." On browsers, the global object is the Window object for the page, and so it has all kinds of predefined properties (and therefore globals) on it related to it being a Window object, including but not limited to:
name
- The name of the current windowtitle
- The title of the current windowstatus
- The status area content (except most browsers ignore it)document
- The document in the current windowwindow
- A reference back to the global object (e.g., a circular reference)setTimeout
- A function used for scheduling something to happen later...and many others. It also gets all kinds of other things thrown into it, such as a property for every DOM element that has an id
(the property's name is the id
, its value is a reference to the DOM element), on some browsers the same is true for DOM elements with a name
property, and so on. It's very cluttered.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With