var length = 100; function f1(){ console.log(this.length) } var obj = { x:10, f2:function(){ f1(); arguments[0](); } } obj.f2(f1,1)