I realise that it is useful (for performance reasons) to do something like...
function Abc(a, b, c) {
var window = window;
So when the code accesses window, it doesn't need to go up the scope chain to finally find window. The same can be done for document, navigator, etc...
But I'm in the process of rewriting some of the MobiScroll jQuery plugin and found this...
function Scroller(elm, dw, settings) {
...
var elm = elm;
var dw = dw;
...
What are the advantages of reinitialising elm and dw to point to their argument variables ?
I've read a lot about accessing arguments being costly, but never read anything about why this might be good practice.
What are the benefits in doing this?
In the past, I've deliberately removed this construct from MDN documentation.
Array()for newArrays,for ( in )withouthasOwnProperty()safety, etc). – alex Aug 24 '11 at 1:18