I was looking at the output of some stuff from UglifyJS and happened across some code like the following:
var a = 0; var b = function () { return functio
Check out the comma operator in JavaScript.
The comma operator evaluates both of its operands (from left to right) and returns the value of the second operand.