I suspect the
The scope of x is the block function in which it is declared... although I believe scope in JavaScript can be a bit tricky sometimes. In C# this would be a compile-time error - it would be trying to use the local variable before its declaration.
Whatever the reason, I'd try to avoid doing it simply for the sake of readability.
