aboutsummaryrefslogtreecommitdiff
path: root/files/ja/learn
diff options
context:
space:
mode:
authormutation <38175860+KaoruMuta@users.noreply.github.com>2021-08-17 11:36:13 +0900
committerGitHub <noreply@github.com>2021-08-17 11:36:13 +0900
commita28f6c8632ced6d91d311614d96ab643e5ef7058 (patch)
treedf36c8be3553bfb39dfafe6088489933852fa0b8 /files/ja/learn
parent53f67634c1b0063e950c57ef3d4f7e087113cb1a (diff)
downloadtranslated-content-a28f6c8632ced6d91d311614d96ab643e5ef7058.tar.gz
translated-content-a28f6c8632ced6d91d311614d96ab643e5ef7058.tar.bz2
translated-content-a28f6c8632ced6d91d311614d96ab643e5ef7058.zip
fix(l10n-ja): modified typo in javascript_basics (#2002)
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 808a7a8371..db79c7a200 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
@@ -258,7 +258,7 @@ if(iceCream === 'チョコレート') {
alert('あれれ、でもチョコレートは私のお気に入り......');
}</pre>
-<p><code>if( ... )</code> の中の式が条件です — ここでは等価演算子を使用して、変数 <code>iceCream</code> と<code>チョコレート</code>という文字列とをを比較し、2 つが等しいかどうかを調べています。この比較が <code>true</code> を返した場合、コードの最初のブロックが実行されます。比較が真でない場合、最初のブロックはスキップされ、 <code>else</code> 文の後にある 2番目のコードブロックが代わりに実行されます。</p>
+<p><code>if( ... )</code> の中の式が条件です — ここでは等価演算子を使用して、変数 <code>iceCream</code> と<code>チョコレート</code>という文字列を比較し、2 つが等しいかどうかを調べています。この比較が <code>true</code> を返した場合、コードの最初のブロックが実行されます。比較が真でない場合、最初のブロックはスキップされ、 <code>else</code> 文の後にある 2番目のコードブロックが代わりに実行されます。</p>
<h3 id="Functions">関数</h3>