Last active
June 8, 2018 01:15
-
-
Save khg0712/07dded45aa6bd8ba93fce0d245e3b6d0 to your computer and use it in GitHub Desktop.
실행 컨텍스트 예시3
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
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