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;
c is undefined.
c
undefined
This is equivalent:
var x = b; var c;