var o = { x: 5, get: function() { var f = () => this.x; return f(); } }; o.get()