안녕하세요.
KevinYo 입니다.
이 글은 개발단어 시리즈입니다. 수많은 개발 단어가 존재하며, 이 수많은 단어는 때로는 혼란을 야기합니다.
오늘은 인자(argument)와 매개변수(parameter)에 차이에 대해서 알아보겠습니다.
인터넷에서 정의된 글중에 가장 쉽게 정리된 문구는 아래와 같습니다 :
parameter is a variable in a function definition
즉 매개변수는 함안에서 정의된 변수 라고 되어있습니다.
Argument is the actual value of this variable that gets passed to function.
인자는 함수에 전달하는 실제 값이다 라고 되어 있습니다.
코드로 한번 표현해 봅시다.
function add(a, b){
return a+b
}
add(1, 2);
위 코드에서 함수 add 의 a, b 는 매개변수, 1, 2는 인자입니다.
비슷하면서도 다른 개발 용어, 기억합시다 :-)
Congratulations @kevin-yo! You received a personal award!
You can view your badges on your Steem Board and compare to others on the Steem Ranking
Vote for @Steemitboard as a witness to get one more award and increased upvotes!
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit