Skip to content
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
3 changes: 2 additions & 1 deletion docs/2-browser-apps/04-anonymous-function/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,11 @@ document.getElementById("strange-button").onclick = () => {

JavaScript における関数式の構文は、次のとおりです。`=>` の記号が特徴的な構文となっています。

<!-- prettier-ignore -->
```javascript
(引数1, 引数2) => {
処理;
};
}
```

:::tip 無名関数を用いて関数定義を書き換える
Expand Down