함수 - 매개 변수와 매개 변수

JavaScript를 더 잘 배우기 위해서 저는 줄곧 깊이 있게 읽고 있습니다.오늘 배운 것은 함수, 특히 매개 변수와 매개 변수 간의 차이이다.

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 and a * 2 (actually, the result of a * 2, which is 6) are the arguments to the foo(..) call. x and y are the parameters that receive the argument values (3 and 6, respectively).


Kyle Simpson의 Functional Light JavaScript

좋은 웹페이지 즐겨찾기