Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/04-operators/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ title: 値と演算子
document.write("こんにちは、世界!");
```

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

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

Expand Down Expand Up @@ -65,5 +65,5 @@ document.write(3 + 4 * 5);

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