Skip to content

Commit cdbf991

Browse files
authored
deleted unnecessary commentout (#676)
1 parent 0788d47 commit cdbf991

File tree

1 file changed

+0
-20
lines changed

1 file changed

+0
-20
lines changed

docs/1-trial-session/08-loop/index.mdx

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -79,26 +79,6 @@ i = i + 1;
7979
i += 1;
8080
```
8181

82-
{/* prettier-ignore */}
83-
{/* 教えるかどうか議論
84-
[**インクリメント演算子**](https://developer.mozilla.org/ja/docs/Web/JavaScript/Reference/Operators/Increment) は、与えられた変数に1を足します。
85-
一方、[**デクリメント演算子**](https://developer.mozilla.org/ja/docs/Web/JavaScript/Reference/Operators/Decrement) は、与えられた変数から1を引きます。
86-
87-
`x++` は `x = x + 1`(=`x += 1`)、 `y--` は `y = y - 1` (=`y -= 1`) という意味になります。
88-
インクリメント演算子を使うと、
89-
90-
```javascript
91-
i = i + 1;
92-
```
93-
94-
は以下のように書き換えることができます。
95-
96-
```javascript
97-
i++;
98-
```
99-
100-
\*/}
101-
10282
:::
10383

10484
## for 文

0 commit comments

Comments
 (0)