XHR constructor example

The current example[1] of an XMLHttpRequest constructor,
  var r = new XMLHttpRequest();
is fine and all, but the variable name `r' strikes me as a bit odd.
I know it's not the job of the W3C to teach best programming practices,
but at least using somewhat descriptive variable names in examples would
not be out of order. This is better:
  var request = new XMLHttpRequest();

[1] http://www.w3.org/TR/2006/WD-XMLHttpRequest-20060405/#xmlhttprequest


Cheers,
Daniel Schierbeck

Received on Saturday, 15 April 2006 17:41:51 UTC