Method Chain

var Hoge={
    call:function (str){ console.log(str); return this; },
    callcall:function (str){ console.log(str);console.log(str); return this; }
}

Hoge.call('a').callcall('b');//> abb