Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(function-method): 関数の引数のカンマ区切りについてを追加 #246

Merged
merged 1 commit into from
May 29, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions source/basic/function-method/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,22 +30,26 @@ JavaScriptでは、関数宣言を`function`キーワードを使うことで行
`function`から始まる文は関数宣言と呼び、次のように関数を宣言をできます。

```js
// 関数定義
function 関数名(仮引数1, 仮引数2) {
// 関数を呼び出した時の処理
// 関数を呼び出された時の処理
// ...
return 関数が返す値;
}
// 関数呼び出し
関数名(引数1, 引数2);
```

関数は次の3つの要素から構成されています。

- 関数名 - 利用できる文字列は変数名と同じ
- 仮引数 - 引数と共に呼ばれた場合に値が入る変数
- 仮引数 - 引数と共に呼ばれた場合に値が入る変数。複数ある場合は`,`(カンマ)で区切る
- 関数の処理 - `{`と`}`で囲んだ関数の処理

<!-- textlint-disable no-js-function-paren -->

宣言した関数は、`関数名()`と書くことで呼び出すことができます。
関数を引数と共に呼ぶ際は、`関数名(引数1, 引数2)`とし、引数が複数ある場合は`,`(カンマ)で区切ります。

<!-- textlint-enable no-js-function-paren -->

Expand Down