show/hide this revision's text 2 added 16 characters in body

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.

show/hide this revision's text 1

I suspect the scope of x is the block 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.