function makeReader() { return () => this.name; } const reader = makeReader.call({ name: 'outer' }); console.log(reader.call({ name: 'inner' }));