Skip to content

Commit

Permalink
fix link and text on Japanese loops and iteration page
Browse files Browse the repository at this point in the history
  • Loading branch information
nekonado committed Oct 29, 2023
1 parent f916a38 commit 51b4f31
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions files/ja/web/javascript/guide/loops_and_iteration/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,14 @@ for (let step = 0; step < 5; step++) {

JavaScript で提供されるループ文は以下のとおりです :

- [for 文](#for_statement)
- [do...while 文](#do...while_statement)
- [while 文](#while_statement)
- [label](#label_statement)
- [break 文](#break_statement)
- [continue 文](#continue_statement)
- [for...in 文](#for...in_statement)
- [for...of 文](#for...of_statement)
- [for 文](#for_文)
- [do...while 文](#do...while_文)
- [while 文](#while_文)
- [ラベルつき](#ラベルつき文)
- [break 文](#break_文)
- [continue 文](#continue_文)
- [for...in 文](#for...in_文)
- [for...of 文](#for...of_文)

## `for`

Expand Down

0 comments on commit 51b4f31

Please sign in to comment.