Can someone explain the potential logic behind a group assignment like this in javascript:
var next, output = null, thisNode;
It appears like it's some type of coalescing like var foo = bar || baz;
, but I'm not so familiar with the commas. Thoughts?