Are there any benefits to using the 'window' prefix when calling javascript variables or methods in the window object? For example, would calling 'window.alert' have an advantage over simply calling 'alert'? I can imagine using the prefix could give a small performance boost when the call is made from inside some function/object, however I rarely see this in people's code. Henceforth this question.
|
|
|||
|
|
|
I doubt there is any measurable performance benefit. After all the scope chain would be scanned for the identifier Using window prefix is useful if you have another variable in scope that would hide the item you may want to retrieve from the window. The question is can you always know when this might be? The answer is no. So should you always prefix with window? What would you code look like if you did that. Ugly. Hence don't do it unless you know you need to. |
||
|
|
|
As far as performance, I think AnthonyWJones has it covered. One use of the window prefix is to explicitly make something available outside the current scope. If you were writing code in a self-invoking function to avoid polluting the global scope, but there was something within that you did want to make globally available, you might do something like the following:
|
||
|
|
|
|
This is useful when attempting to test global object values. For example, if
but this does not throw an error:
Similarly with:
and:
I would not expect to see a significant performance difference, and the only other reason you might do this is to ensure that you are actually getting a value from the global scope (in case the value has been redefined in the current scope). |
||
|
|
|
|
Retrieved from Google (http://www.techotopia.com/index.php/JavaScript_Window_Object): The window object is the top-level object of the object hierarchy. As such, whenever an object method or property is referenced in a script without the object name and dot prefix it is assumed by JavaScript to be a member of the window object. This means, for example, that when calling the window alert() method to display an alert dialog the window. prefix is not mandatory. Therefore the following method calls achieve the same thing: window.alert() However, I read but have not had time to test the following from:
(http://www.javascriptref.com/reference/object.cfm?key=20) |
||
|
|
|
When you use the prefix, you're making it explicit you're using the "global" definition of the variable, not a local one. (I'm not sure whether / how you can inject variables into a scope in JS, except the weirdness with this and inline event handlers.) YMMV, you may either prefer the clarity, or find it to be just clutter. |
||
|
|
|
|
It only matters if you're using frames and doing a bunch of javascript calls across frames, and even then only specific scenarios warrant the necessity of referencing |
||
|
|
|
|
I imagine that the performance benefit here is amazingly insignificant at best, if there is one at all. |
||
|
|
