let obj = { func1 : function() { console.log(this === obj); } }; let func2 = obj.func1; obj.func1(); func2();