Argument (実引数)

実引数関数の入力として渡されるプリミティブまたはオブジェクト)です。

例:

js
const argument1 = "Web";
const argument2 = "Development";
example(argument1, argument2); // 2 つの引数を渡す

// この関数は 2 つの値を取る
function example(parameter1, parameter2) {
  console.log(parameter1); // 出力 = "Web"
  console.log(parameter2); // 出力 = "Development"
}

関数呼び出しにおける実引数の順序は、関数定義内の仮引数の順序と同じでなければなりません。

js
const argument1 = "foo";
const argument2 = [1, 2, 3];
example(argument1, argument2); // 2 つの実引数を渡す

// この関数は単一の値を取るので、渡された第 2 引数は無視される。
function example(parameter) {
  console.log(parameter); // 出力 = foo
}

関連情報