Can someone tell me the meaning of the expression (x = +_, force)?
I know that x is getting incremented by _  but what does force separated by comma does?
  force.x = function(_) {
    return arguments.length ? (x = +_, force) : x;
  }
is it calling/referencing the function named force? in the full code force is a function..
 
    