Skip to content

Instantly share code, notes, and snippets.

@khg0712
Created May 19, 2018 16:26
Show Gist options
  • Save khg0712/4dbe7e0fa58da91f39aa6c88174d74be to your computer and use it in GitHub Desktop.
Save khg0712/4dbe7e0fa58da91f39aa6c88174d74be to your computer and use it in GitHub Desktop.
함수 호이스팅 예시
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