2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

パラメータと引数の見分け方

Posted at

覚えやすい方法を見かけたのでメモ

手短に言うと

実際の値を渡すのがargument(引数)
プレースホルダーとして名前自体に意味がないのがパラメータ

英語で覚えます。

パラメータ...英語でそのままparameters
引数...arguments

パラメータ parameter

ParameterはPlaceholderのPと覚える。
place holderなので場所を確保しているだけなので、名前は何でも良い。

function sum(first,second) {
  return first + second;
}

引数 arguments

呼び出し時に渡す値。
Actual Values(実際の値)のAから始まるargumentsと覚える。
実際の値なので実際に渡したい値そのものが入ります。

sum(2,4);

参照

place holder, actual valueという覚え方はwes bosのJavascriptコースで知りました。
その他の説明もめちゃめちゃわかりやすいです。
https://beginnerjavascript.com/

2
2
2

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?