728x90 300x250 SMALL 일반함수와 this1 일반 함수 안에서 this var value = 10; function execute() { this.value = 20; value = 30; document.write("1. value = " + value, " "); document.write("2. this.value = " + this.value, " "); document.write("3. window.value = " + window.value, " "); } execute(); 실행결과 1. value = 30 2. this.value = 30 3. window.value = 30 일반함수 내부에 있는 this는 전역객체인 window가 저장된다. 즉 this.value는 window.value와 같은 의미이다. 즉 전역 객체인 value에 20이 저장되게 된다. .. 2023. 8. 6. 이전 1 다음 728x90 반응형 LIST