Skip to content

Commit 4c95dc0

Browse files
committed
「Hello World!」を「Hello, world!」に変更
1 parent 41c8cbd commit 4c95dc0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/04-operators/index.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ title: 値と演算子
1010
document.write("こんにちは、世界!");
1111
```
1212

13-
`"こんにちは、世界!"``"Hello World!"` などのように `"` (ダブルクォーテーション) で囲まれたものを、**文字列**と呼びます。<Term>文字列</Term>は、****の一種です。
13+
`"こんにちは、世界!"``"Hello world!"` などのように `"` (ダブルクォーテーション) で囲まれたものを、**文字列**と呼びます。<Term>文字列</Term>は、****の一種です。
1414

1515
次のプログラムを実行すると、`3` と画面に表示されます。
1616

@@ -65,5 +65,5 @@ document.write(3 + 4 * 5);
6565

6666
```javascript
6767
document.write("こんにちは、" + "世界!"); // こんにちは、世界!
68-
document.write("Hello" + "World!"); // HelloWorld!
68+
document.write("Hello" + "world!"); // Helloworld!
6969
```

0 commit comments

Comments
 (0)