함수 - 매개 변수와 매개 변수
Arguments are the values you pass in, and parameters are the named variables inside the function that receive those passed-in values.
예를 들면 다음과 같습니다.
function foo(x,y) {
// ..
}
var a = 3;
foo(a, a * 2);
a
anda * 2
(actually, the result ofa * 2
, which is6
) are the arguments to thefoo(..)
call.x
andy
are the parameters that receive the argument values (3
and6
, respectively).
Kyle Simpson의 Functional Light JavaScript
Reference
이 문제에 관하여(함수 - 매개 변수와 매개 변수), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/sdcaulley/functions-arguments-vs-parameters-56c9텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)