aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web
diff options
context:
space:
mode:
authorYangQi <yangfong2022@qq.com>2022-03-17 21:29:02 +0800
committerIrvin <irvinfly@gmail.com>2022-03-18 01:11:16 +0800
commitfcb48841275f74a6e9622894f274577a9fcd3201 (patch)
tree16a5913119722540317287ef08f2fc16ee8b710d /files/zh-cn/web
parent0be80309b4ecc0edbb44ff631148cafd434c7a9d (diff)
downloadtranslated-content-fcb48841275f74a6e9622894f274577a9fcd3201.tar.gz
translated-content-fcb48841275f74a6e9622894f274577a9fcd3201.tar.bz2
translated-content-fcb48841275f74a6e9622894f274577a9fcd3201.zip
fix: wrong symbols and redundant words
- Use full-angle symbols instead of half-angle symbols. - Optimized statement description
Diffstat (limited to 'files/zh-cn/web')
-rw-r--r--files/zh-cn/web/javascript/data_structures/index.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/files/zh-cn/web/javascript/data_structures/index.html b/files/zh-cn/web/javascript/data_structures/index.html
index c3a45e0acd..9663cc064b 100644
--- a/files/zh-cn/web/javascript/data_structures/index.html
+++ b/files/zh-cn/web/javascript/data_structures/index.html
@@ -97,8 +97,8 @@ foo = true; // foo is a Boolean now
<p>不同于类 C 语言,JavaScript 字符串是不可更改的。这意味着字符串一旦被创建,就不能被修改。但是,可以基于对原始字符串的操作来创建新的字符串。例如:</p>
<ul>
- <li>获取一个字符串的子串可通过选择个别字母或者使用 {{jsxref("String.substr()")}}.</li>
- <li>两个字符串的连接使用连接操作符 (<code>+</code>) 或者 {{jsxref("String.concat()")}}.</li>
+ <li>获取一个字符串的子串可通过选择个别字母或者使用 {{jsxref("String.substr()")}}。</li>
+ <li>两个字符串的连接使用连接操作符 (<code>+</code>) 或者 {{jsxref("String.concat()")}}。</li>
</ul>
<h4 id="注意代码中的“字符串类型”!">注意代码中的“字符串类型”!</h4>
@@ -117,11 +117,11 @@ foo = true; // foo is a Boolean now
<h3 id="符号类型">符号类型</h3>
-<p>符号(Symbols)是 ECMAScript 第6版新定义的。符号类型是唯一的并且是不可修改的, 并且也可以用来作为 Object 的 key 的值(如下). 在某些语言当中也有类似的原子类型(Atoms). 你也可以认为为它们是 C 里面的枚举类型. 更多细节请看 {{Glossary("Symbol")}} 和 {{jsxref("Symbol")}} 。</p>
+<p>符号(Symbols)是 ECMAScript 第6版新定义的。符号类型是唯一且不可修改的, 并且可以用来当作为 Object 的 key 的值(如下),在某些语言当中也有类似的原子类型(Atoms),你也可以认为它们是 C 里面的枚举类型,更多细节请看 {{Glossary("Symbol")}} 和 {{jsxref("Symbol")}}。</p>
<h2 id="对象">对象</h2>
-<p>在计算机科学中, 对象是指内存中的可以被 {{Glossary("Identifier", "标识符")}}引用的一块区域.</p>
+<p>在计算机科学中, 对象是指内存中的可以被 {{Glossary("Identifier", "标识符")}}引用的一块区域。</p>
<h3 id="属性">属性</h3>