From 0b47d828c6d8027bf77ee888d226ef86550a2632 Mon Sep 17 00:00:00 2001 From: chvmvd <104971044+chvmvd@users.noreply.github.com> Date: Thu, 20 Jun 2024 12:50:42 +0900 Subject: [PATCH] =?UTF-8?q?=E3=80=8C=E3=81=AF=E3=81=98=E3=82=81=E3=81=A6?= =?UTF-8?q?=E3=81=AEJavaScript=E3=80=8D=E3=81=AE=E7=AB=A0=E3=81=AE?= =?UTF-8?q?=E4=BE=8B=E3=82=92=E8=8B=B1=E8=AA=9E=E3=81=8B=E3=82=89=E6=97=A5?= =?UTF-8?q?=E6=9C=AC=E8=AA=9E=E3=81=AB=E5=A4=89=E6=9B=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/03-javascript/index.mdx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/03-javascript/index.mdx b/docs/03-javascript/index.mdx index a35683f..6141ec9 100644 --- a/docs/03-javascript/index.mdx +++ b/docs/03-javascript/index.mdx @@ -28,9 +28,9 @@ document.write("こんにちは、世界!"); `document.write` は画面に出力するための命令です。 ```javascript -document.write("Hello World1"); -document.write("Hello World2"); -document.write("Hello World3"); +document.write("こんにちは、世界1"); +document.write("こんにちは、世界2"); +document.write("こんにちは、世界3"); ``` ## コメント @@ -40,8 +40,8 @@ document.write("Hello World3"); ```javascript // この部分はコメントです。 -document.write("Hello World1"); // この部分もコメントです。 +document.write("こんにちは、世界1"); // この部分もコメントです。 // 次の行はコメントになっているため、プログラムの実行に影響を与えません。 -// document.write("Hello World2"); -document.write("Hello World3"); +// document.write("こんにちは、世界2"); +document.write("こんにちは、世界3"); ```