티스토리 뷰

🌈 JavaScript

클로저(Closure)

James Wetzel 2020. 11. 11. 17:54
728x90
반응형

var i;
for (i = 0; i < 10; i++) {
(function(j) {
setTimeout(function() {
console.log(j);
}, 1000 * j );
})(i);
}emptySkuImageList.Rows.length;emptySkuImageList.Rows.length;emptySkuImageList.Rows.length;

 

참조 사이트 : hyunseob.github.io/2016/08/30/javascript-closure/

728x90
반응형