'var that = this;'는 무엇입니까? JavaScript에서 의미 하는가? JavaScript 파일에서 나는 보았다 : function Somefunction(){ var that = this; ... } that그것을 선언 하고 할당 하는 목적은 무엇입니까 this? 이 답변을 그림으로 시작하겠습니다. var colours = ['red', 'green', 'blue']; document.getElementById('element').addEventListener('click', function() { // this is a reference to the element clicked on var that = this; colours.forEach(function() { // this is u..