Skip to content

Commit

Permalink
コードブロックの外側に移動
Browse files Browse the repository at this point in the history
  • Loading branch information
aster-void committed Oct 7, 2023
1 parent 65935b4 commit bc8573a
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions docs/1-trial-session/09-functions/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -124,8 +124,9 @@ increment();

複雑な操作を <Term type="javascriptFunction">関数</Term> として <Term strong type="javascriptModularization">モジュール化</Term> して複数のブロックに分解することで、コードの可読性を上げることができます。

モジュール化前:

```javascript
// モジュール化前
const stringToRepeat = "";
for (let i = 0; i < 10; i += 1) {
let result = "";
Expand All @@ -137,8 +138,9 @@ for (let i = 0; i < 10; i += 1) {
}
```

モジュール化後:

```javascript
// モジュール化後
function repeat(stringToRepeat, times) {
let result = "";
for (let j = 0; j < times; j += 1) {
Expand Down

0 comments on commit bc8573a

Please sign in to comment.