Example:
var a = function(x){ this.x = x+1; return this; }
var b = function(){ this.x *= 2; return this.x; }
a(3).b(); //result = 8