Created
May 19, 2018 16:26
-
-
Save khg0712/4dbe7e0fa58da91f39aa6c88174d74be 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
add(1,2);//3 | |
function add(a,b) { | |
return a + b; | |
} | |
add(3,4);//7 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment