Created
June 6, 2018 11:47
-
-
Save khg0712/76a1da7635ae9c868b7083c205b4c247 to your computer and use it in GitHub Desktop.
실행 컨텍스트 예시
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
console.log("전역 코드"); | |
//전역 코드 출력 | |
function1() { | |
console.log("function1"); | |
} | |
function2() { | |
function1(); | |
console.log("function2"); | |
} | |
function2(); | |
//function1 출력 | |
//function2 출력 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment