Skip to content

Commit 4075213

Browse files
committed
手動revert pt2
1 parent 8364b91 commit 4075213

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ document.write(sum);
6969

7070
[**複合代入演算子**](https://developer.mozilla.org/ja/docs/Web/JavaScript/Guide/Expressions_and_Operators#%E4%BB%A3%E5%85%A5%E6%BC%94%E7%AE%97%E5%AD%90) は、計算と代入を同時に行うことができる演算子です。
7171

72-
`x += y` は、`x = x + y` という意味になります。他にも `-=``*=` などの演算子が定義されています。`x -= y``x = x - y` `x *= y``x = x * y` という意味になります。
72+
`x += y` は、`x = x + y` という意味になります。他にも `-=``*=` などの演算子が定義されています。`x -= y``x = x - y``x *= y``x = x * y` という意味になります。
7373

7474
複合代入演算子を用いると、
7575

docs/1-trial-session/09-functions/index.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,6 @@ function repeat(stringToRepeat, times) {
152152
}
153153
return result;
154154
}
155-
156155
for (let i = 0; i < 10; i += 1) {
157156
document.write(repeat("", i));
158157
document.write("<br>");

0 commit comments

Comments
 (0)