this
예:
function Outer() { this.outerProp = 1; function inner() { // Outer의 'outerProp' 때문에 좋지 않음 // 여기서 업데이트 안 함 // 'new Outer()'를 호출할 수 있음 this.outerProp = 2; } inner(); }