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;
It's the same as
var x = b; var c;
One of those so clever it's extremely stupid additions to a language.