Skip to content

Instantly share code, notes, and snippets.

@khg0712
Created June 6, 2018 11:47
Show Gist options
  • Save khg0712/76a1da7635ae9c868b7083c205b4c247 to your computer and use it in GitHub Desktop.
Save khg0712/76a1da7635ae9c868b7083c205b4c247 to your computer and use it in GitHub Desktop.
실행 컨텍스트 예시
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