In JavaScript, it is possible to declare multiple variables like this:
var variable1 = "Hello, World!"; var variable2 = "Testing..."; var
It's just a matter of personal preference. There is no difference between these two ways, other than a few bytes saved with the second form if you strip out the white space.