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: 「文と式」におけるセクションのタイトルを漢字に変更 #1578

Merged
merged 1 commit into from
Feb 12, 2023
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
2 changes: 1 addition & 1 deletion source/basic/statement-expression/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ undefined // ここでブロック内で定義した変数`count`は参照でき
これは、ブロックスコープという仕組みによるものですが、詳しい仕組みについては「[関数とスコープ][]」の章で解説します。
今は、ブロック文を使うとREPLでの試行錯誤がしやすいということだけ知っていれば問題ありません。

## function宣言(文)とfunction式 {#function-statement-and-function-expression}
## 関数宣言(文)と関数式 {#function-statement-and-function-expression}

「[関数と宣言][]」の章において、関数を定義する方法を学びました。
functionキーワードから文を開始する**関数宣言**と、変数へ**関数式**を代入する方法があります。
Expand Down