aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/javascript/reference/operators
diff options
context:
space:
mode:
Diffstat (limited to 'files/zh-cn/web/javascript/reference/operators')
-rw-r--r--files/zh-cn/web/javascript/reference/operators/delete/index.html3
-rw-r--r--files/zh-cn/web/javascript/reference/operators/in/index.html3
-rw-r--r--files/zh-cn/web/javascript/reference/operators/index.html6
-rw-r--r--files/zh-cn/web/javascript/reference/operators/instanceof/index.html3
-rw-r--r--files/zh-cn/web/javascript/reference/operators/new/index.html3
5 files changed, 2 insertions, 16 deletions
diff --git a/files/zh-cn/web/javascript/reference/operators/delete/index.html b/files/zh-cn/web/javascript/reference/operators/delete/index.html
index 1a088c94a3..f8b4e02e0c 100644
--- a/files/zh-cn/web/javascript/reference/operators/delete/index.html
+++ b/files/zh-cn/web/javascript/reference/operators/delete/index.html
@@ -34,9 +34,6 @@ delete <em>object</em>['<em>property</em>']
<dl>
<dt><code>object</code></dt>
<dd>对象的名称,或计算结果为对象的表达式。</dd>
-</dl>
-
-<dl>
<dt><code>property</code></dt>
<dd>要删除的属性。</dd>
</dl>
diff --git a/files/zh-cn/web/javascript/reference/operators/in/index.html b/files/zh-cn/web/javascript/reference/operators/in/index.html
index 8420c0d14b..a03e0b2c97 100644
--- a/files/zh-cn/web/javascript/reference/operators/in/index.html
+++ b/files/zh-cn/web/javascript/reference/operators/in/index.html
@@ -24,9 +24,6 @@ translation_of: Web/JavaScript/Reference/Operators/in
<dl>
<dt><code>prop</code></dt>
<dd>一个字符串类型或者 symbol 类型的属性名或者数组索引(非symbol类型将会强制转为字符串)。</dd>
-</dl>
-
-<dl>
<dt><code>objectName</code></dt>
<dd>检查它(或其原型链)是否包含具有指定名称的属性的对象。</dd>
</dl>
diff --git a/files/zh-cn/web/javascript/reference/operators/index.html b/files/zh-cn/web/javascript/reference/operators/index.html
index 5387a37f1a..810ccb74cd 100644
--- a/files/zh-cn/web/javascript/reference/operators/index.html
+++ b/files/zh-cn/web/javascript/reference/operators/index.html
@@ -241,14 +241,12 @@ translation_of: Web/JavaScript/Reference/Operators
<p>解构赋值允许你分配数组或者对象变量的属性通过使用规定的语法,其看起来和数组和对象字面量很相似。</p>
</dd>
<dt>
- <h3 id="逗号操作符">逗号操作符</h3>
+ <h3 id="逗号操作符">逗号操作符 {{jsxref("Operators/Comma_Operator", ",")}}</h3>
</dt>
- <dt>{{jsxref("Operators/Comma_Operator", ",")}}</dt>
<dd>逗号操作符允许在一个判断状态中有多个表达式去进行运算并且最后返回最后一个表达式的值。</dd>
<dt>
- <h3 id="非标准化特性">非标准化特性</h3>
+ <h3 id="非标准化特性">非标准化特性 {{JSxRef("Operators/Expression_closures", "Expression closures", "", 1)}} {{non-standard_inline}}{{obsolete_inline(60)}}</h3>
</dt>
- <dt>{{JSxRef("Operators/Expression_closures", "Expression closures", "", 1)}} {{non-standard_inline}}{{obsolete_inline(60)}}</dt>
<dd>闭包表达式语法是一个缩写简单的函数。</dd>
<dt>{{JSxRef("Operators/Legacy_generator_function", "Legacy generator function", "", 1)}} {{non-standard_inline}}{{obsolete_inline(58)}}</dt>
<dd>function关键字能用来定义表达式内部未执行完的function的余下功能。 为了能执行function内部余下的代码, 这个function的内部至少包含一个{{jsxref("Operators/yield", "yield")}} 表达式。</dd>
diff --git a/files/zh-cn/web/javascript/reference/operators/instanceof/index.html b/files/zh-cn/web/javascript/reference/operators/instanceof/index.html
index f8c5807b3c..f6f1f188f8 100644
--- a/files/zh-cn/web/javascript/reference/operators/instanceof/index.html
+++ b/files/zh-cn/web/javascript/reference/operators/instanceof/index.html
@@ -27,9 +27,6 @@ translation_of: Web/JavaScript/Reference/Operators/instanceof
<dl>
<dt><code>object</code></dt>
<dd>某个实例对象</dd>
-</dl>
-
-<dl>
<dt><code>constructor</code></dt>
<dd>某个构造函数</dd>
</dl>
diff --git a/files/zh-cn/web/javascript/reference/operators/new/index.html b/files/zh-cn/web/javascript/reference/operators/new/index.html
index e6833d4cc7..e44beb9763 100644
--- a/files/zh-cn/web/javascript/reference/operators/new/index.html
+++ b/files/zh-cn/web/javascript/reference/operators/new/index.html
@@ -26,9 +26,6 @@ translation_of: Web/JavaScript/Reference/Operators/new
<dl>
<dt><code>constructor</code></dt>
<dd>一个指定对象实例的类型的类或函数。</dd>
-</dl>
-
-<dl>
<dt><code>arguments</code></dt>
<dd>一个用于被 <code>constructor</code> 调用的参数列表。</dd>
</dl>