[JS] Closure 퀴즈
JavaScript Closure 이해도 평가 퀴즈 퀴즈1 function sayHello(name) { var text = 'Hello ' + name; var say = function() { console.log(text); } say(); } sayHello('Joe'); // 퀴즈2 function sayHello2(name) { var text = 'Hello ' + name; // Local variable var say = function() { console.log(text); } return say; } var say2 = sayHello2('Bob'); say2(); // 퀴즈3 function say667() { // Local variable that ends up within c..
코딩방/개발 공부
2017. 6. 26. 17:01
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday