We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 41c8cbd commit 4c95dc0Copy full SHA for 4c95dc0
docs/04-operators/index.mdx
@@ -10,7 +10,7 @@ title: 値と演算子
10
document.write("こんにちは、世界!");
11
```
12
13
-`"こんにちは、世界!"` や `"Hello World!"` などのように `"` (ダブルクォーテーション) で囲まれたものを、**文字列**と呼びます。<Term>文字列</Term>は、**値**の一種です。
+`"こんにちは、世界!"` や `"Hello world!"` などのように `"` (ダブルクォーテーション) で囲まれたものを、**文字列**と呼びます。<Term>文字列</Term>は、**値**の一種です。
14
15
次のプログラムを実行すると、`3` と画面に表示されます。
16
@@ -65,5 +65,5 @@ document.write(3 + 4 * 5);
65
66
```javascript
67
document.write("こんにちは、" + "世界!"); // こんにちは、世界!
68
-document.write("Hello" + "World!"); // HelloWorld!
+document.write("Hello" + "world!"); // Helloworld!
69
0 commit comments