We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0788d47 commit cdbf991Copy full SHA for cdbf991
docs/1-trial-session/08-loop/index.mdx
@@ -79,26 +79,6 @@ i = i + 1;
79
i += 1;
80
```
81
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
97
-i++;
98
99
100
-\*/}
101
102
:::
103
104
## for 文
0 commit comments