let obj = { fn1: function(){ console.log( this ) }, fn2() { console.log( this ) }, fn3: () => { console.log( this ) }}obj.fn1()obj.fn2()obj.fn3()