Skip to content

Instantly share code, notes, and snippets.

@khg0712
Last active June 8, 2018 01:15
Show Gist options
  • Save khg0712/07dded45aa6bd8ba93fce0d245e3b6d0 to your computer and use it in GitHub Desktop.
Save khg0712/07dded45aa6bd8ba93fce0d245e3b6d0 to your computer and use it in GitHub Desktop.
실행 컨텍스트 예시3
var a = 10, b = 2;
function exampleFunc(a,b) {
var c = 1, d = 2;
function child() {
return a+b;
}
return child()+c+d;
}
exampleFunc(3,4);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment