Javascript/Javascript
[자바 스크립트] 즉시실행함수... 그리고 클로저
Rainbow🌈Coder
2022. 3. 21. 18:53
728x90
main.js
function Tell() {
console.log("Tell");
}
function Dance() {
console.log("Dance");
}
(function () {
Tell();
Dance();
})();
정상적인 출력

728x90