aboutsummaryrefslogtreecommitdiff
path: root/files/ja/learn
diff options
context:
space:
mode:
authorKisaragi <48310258+KisaragiEffective@users.noreply.github.com>2021-06-07 22:58:24 +0900
committerGitHub <noreply@github.com>2021-06-07 22:58:24 +0900
commit165f92edcbf3707d18c808704d9ac8e66a712dbb (patch)
tree0bbbd07c58578f966813c0f563d487a419261506 /files/ja/learn
parentb7ee710347560bcfb78fc399033e08360db905c4 (diff)
downloadtranslated-content-165f92edcbf3707d18c808704d9ac8e66a712dbb.tar.gz
translated-content-165f92edcbf3707d18c808704d9ac8e66a712dbb.tar.bz2
translated-content-165f92edcbf3707d18c808704d9ac8e66a712dbb.zip
fix #1006 (#1136)
Diffstat (limited to 'files/ja/learn')
-rw-r--r--files/ja/learn/getting_started_with_the_web/javascript_basics/index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/files/ja/learn/getting_started_with_the_web/javascript_basics/index.html b/files/ja/learn/getting_started_with_the_web/javascript_basics/index.html
index 61095df0eb..b3d1dc4916 100644
--- a/files/ja/learn/getting_started_with_the_web/javascript_basics/index.html
+++ b/files/ja/learn/getting_started_with_the_web/javascript_basics/index.html
@@ -83,7 +83,7 @@ myHeading.textContent = 'Hello world!';</pre>
<h3 id="Variables" name="Variables">変数</h3>
-<p>{{Glossary("Variable", "変数")}} は、値を格納できる入れ物です。まず、 <code><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/var">var</a></code> (説明はややこしいですが、推奨しません) まはた <code><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/let">let</a></code> というキーワードと、その後に任意の名前を指定することで、変数を宣言します。</p>
+<p>{{Glossary("Variable", "変数")}} は、値を格納できる入れ物です。まず、 <code><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/var">var</a></code> (説明はややこしいですが、推奨しません) または <code><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/let">let</a></code> というキーワードと、その後に任意の名前を指定することで、変数を宣言します。</p>
<pre class="brush: js notranslate">let myVariable;</pre>