I found this in a piece of code and i\'m wondering what it does? Assign b to x... but what\'s with the ,c?
,c
var x = b, c;
That defines two local variables x and c - while setting x's value equal to the value of b.
x
c
b