Going around Modernizr source code I have found strange thing:

window.Modernizr = (function(window,document,undefined) {

After that this function will be called with two arguments (this, this.document).

Why undefined is used here? Is it meaningful or it's just strange code-style?

link|improve this question
I know that this construction is overriding undefined in function context, but I can't understand for what. – Gleb M Borisov Jan 10 '11 at 19:07
feedback

1 Answer

up vote 8 down vote accepted

Creates a local undefined in case someone redefines undefined somewhere in the scope chain.

Also provides a faster lookup since undefined is a global property, so the scope chain traversal is reduced.

link|improve this answer
1  
Wow, thanks for fast answer. I don't think about that. – Gleb M Borisov Jan 10 '11 at 19:08
2  
Yes, I believe Paul Irish refers to that as the asshole effect in the 10 things I learned about JQuery video. – Loktar Jan 10 '11 at 19:10
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.