함수 정의 시 나열되는 변수(variable)
function 함수이름(매개변수1, 매개변수2, ...) { .. 코드 .. }
함수 호출 시 전달되는 실제 값(value)
함수이름(인자1, 인자2, ...);