diff options
author | Hin <873243610@qq.com> | 2021-09-21 21:37:55 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-21 21:37:55 +0800 |
commit | ccfe27b20368172d91786a7f3416e042b29bbaa2 (patch) | |
tree | b8bd852361efef40f1c841ae0b6f2784f9ae67c2 /files/zh-cn/learn | |
parent | ae378c0aab28bc8ab71168c1ef3e33e4ea3845af (diff) | |
download | translated-content-ccfe27b20368172d91786a7f3416e042b29bbaa2.tar.gz translated-content-ccfe27b20368172d91786a7f3416e042b29bbaa2.tar.bz2 translated-content-ccfe27b20368172d91786a7f3416e042b29bbaa2.zip |
Improve Learn/JavaScript/First_steps/Math, zh-CN (#2516)
change places where readers may feel confusing.
Diffstat (limited to 'files/zh-cn/learn')
-rw-r--r-- | files/zh-cn/learn/javascript/first_steps/math/index.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/files/zh-cn/learn/javascript/first_steps/math/index.html b/files/zh-cn/learn/javascript/first_steps/math/index.html index b9bb3e012f..2a0e7a7840 100644 --- a/files/zh-cn/learn/javascript/first_steps/math/index.html +++ b/files/zh-cn/learn/javascript/first_steps/math/index.html @@ -41,7 +41,7 @@ translation_of: Learn/JavaScript/First_steps/Math <p>我们甚至有不同类型的数字系统! 十进制是基数10(意味着它在每列使用0-9),但是我们也有这样的东西:</p> <ul> - <li><strong>二进制</strong> — 计算机的最基础语言; 0s and 1s</li> + <li><strong>二进制</strong> — 计算机的最基础语言—— 0 和 1</li> <li><strong>八进制</strong> — 基数8,每列使用0-7</li> <li><strong>十六进制</strong> — 基数16,每列使用0-9,然后使用a-f。 在CSS中设置颜色时,可能会遇到这些数字。</li> </ul> @@ -396,7 +396,7 @@ function updateBtn() { <p><strong><a href="https://mdn.github.io/learning-area/javascript/introduction-to-js-1/maths/conditional.html">新窗口打开</a></strong></p> -<p>您可以在updateBtn()函数内看到正在使用的等号运算符。 在这种情况下,我们不会测试两个数学表达式是否具有相同的值 - 我们正在测试一个按钮的文本内容是否包含某个字符串 - 但它仍然是工作原理。 如果按钮当前按“启动机”,则将其标签更改为“停机”,并根据需要更新标签。 如果按下按钮当前正在说“停机”,我们再次将显示器交换回来。</p> +<p>您可以在updateBtn()函数内看到正在使用的等号运算符。 在这种情况下,我们不会测试两个数学表达式是否具有相同的值 - 我们正在测试一个按钮的文本内容是否包含某个字符串 - 但它仍然是工作原理。 如果按钮当前为“启动机器(start machine)”,则将其标签更改为“停止机器(stop machine)”,并根据需要更新标签。 如果按钮上写着“停机”时被按下,我们将显示回原来的内容。</p> <div class="note"> <p><strong>Note</strong>: 这种在两个状态之间来回交换的行为通常被称为<strong> </strong><strong>切换 (toggle)</strong>。它在一个状态和另一个状态之间切换 - 点亮,熄灭等</p> |