var obj={ name: 'Вася', method: function(){ alert(this.name); } }; test(obj.method.bind(obj)); function test(Method){ Method(); };