diff options
| author | t7yang <t7yang@gmail.com> | 2022-01-10 08:38:06 +0800 |
|---|---|---|
| committer | Irvin <irvinfly@gmail.com> | 2022-02-16 02:35:54 +0800 |
| commit | ea514a38735125a2b5468300311ea8b2389c8863 (patch) | |
| tree | 1afc6c2ff3ee3bc5efdfbba3841e2ef24f0c9485 /files/zh-cn/web/javascript/reference/operators | |
| parent | a2960295605a27e084541fc2f93068dd3cad15ba (diff) | |
| download | translated-content-ea514a38735125a2b5468300311ea8b2389c8863.tar.gz translated-content-ea514a38735125a2b5468300311ea8b2389c8863.tar.bz2 translated-content-ea514a38735125a2b5468300311ea8b2389c8863.zip | |
remove hidden class for zh-CN
Diffstat (limited to 'files/zh-cn/web/javascript/reference/operators')
27 files changed, 0 insertions, 83 deletions
diff --git a/files/zh-cn/web/javascript/reference/operators/bitwise_and/index.html b/files/zh-cn/web/javascript/reference/operators/bitwise_and/index.html index c857ac2b41..017d0d464c 100644 --- a/files/zh-cn/web/javascript/reference/operators/bitwise_and/index.html +++ b/files/zh-cn/web/javascript/reference/operators/bitwise_and/index.html @@ -10,8 +10,6 @@ original_slug: Web/JavaScript/Reference/Operators/按位与 <div>{{EmbedInteractiveExample("pages/js/expressions-bitwise-and.html")}}</div> -<div class="hidden">The source for this interactive example is stored in a GitHub repository. If you'd like to contribute to the interactive examples project, please clone <a href="https://github.com/mdn/interactive-examples">https://github.com/mdn/interactive-examples</a> and send us a pull request.</div> - <h2 id="语法">语法</h2> <pre class="syntaxbox"><code><var>a</var> & <var>b</var></code> diff --git a/files/zh-cn/web/javascript/reference/operators/bitwise_or/index.html b/files/zh-cn/web/javascript/reference/operators/bitwise_or/index.html index 245da8fdab..2f83d5d956 100644 --- a/files/zh-cn/web/javascript/reference/operators/bitwise_or/index.html +++ b/files/zh-cn/web/javascript/reference/operators/bitwise_or/index.html @@ -9,8 +9,6 @@ translation_of: Web/JavaScript/Reference/Operators/Bitwise_OR <div>{{EmbedInteractiveExample("pages/js/expressions-bitwise-or.html")}}</div> -<div class="hidden">The source for this interactive example is stored in a GitHub repository. If you'd like to contribute to the interactive examples project, please clone <a href="https://github.com/mdn/interactive-examples">https://github.com/mdn/interactive-examples</a> and send us a pull request.</div> - <h2 id="语法">语法</h2> <pre class="syntaxbox"><code><var>a</var> | <var>b</var></code> diff --git a/files/zh-cn/web/javascript/reference/operators/bitwise_or_assignment/index.html b/files/zh-cn/web/javascript/reference/operators/bitwise_or_assignment/index.html index fad4f94082..c8e2692723 100644 --- a/files/zh-cn/web/javascript/reference/operators/bitwise_or_assignment/index.html +++ b/files/zh-cn/web/javascript/reference/operators/bitwise_or_assignment/index.html @@ -9,8 +9,6 @@ translation_of: Web/JavaScript/Reference/Operators/Bitwise_OR_assignment <div>{{EmbedInteractiveExample("pages/js/expressions-bitwise-or-assignment.html")}}</div> -<div class="hidden">The source for this interactive example is stored in a GitHub repository. If you'd like to contribute to the interactive examples project, please clone <a href="https://github.com/mdn/interactive-examples">https://github.com/mdn/interactive-examples</a> and send us a pull request.</div> - <h2 id="语法">语法</h2> <pre class="syntaxbox"><strong>Operator:</strong> x |= y diff --git a/files/zh-cn/web/javascript/reference/operators/bitwise_xor/index.html b/files/zh-cn/web/javascript/reference/operators/bitwise_xor/index.html index e68e1d436b..1ec5d48f0a 100644 --- a/files/zh-cn/web/javascript/reference/operators/bitwise_xor/index.html +++ b/files/zh-cn/web/javascript/reference/operators/bitwise_xor/index.html @@ -9,8 +9,6 @@ translation_of: Web/JavaScript/Reference/Operators/Bitwise_XOR <div>{{EmbedInteractiveExample("pages/js/expressions-bitwise-xor.html")}}</div> -<div class="hidden">The source for this interactive example is stored in a GitHub repository. If you'd like to contribute to the interactive examples project, please clone <a href="https://github.com/mdn/interactive-examples">https://github.com/mdn/interactive-examples</a> and send us a pull request.</div> - <h2 id="语法">语法</h2> <pre class="syntaxbox"><code><var>a</var> ^ <var>b</var></code> diff --git a/files/zh-cn/web/javascript/reference/operators/division_assignment/index.html b/files/zh-cn/web/javascript/reference/operators/division_assignment/index.html index a9d3508d00..167f41d33f 100644 --- a/files/zh-cn/web/javascript/reference/operators/division_assignment/index.html +++ b/files/zh-cn/web/javascript/reference/operators/division_assignment/index.html @@ -9,8 +9,6 @@ translation_of: Web/JavaScript/Reference/Operators/Division_assignment <div>{{EmbedInteractiveExample("pages/js/expressions-division-assignment.html")}}</div> -<div class="hidden">The source for this interactive example is stored in a GitHub repository. If you'd like to contribute to the interactive examples project, please clone <a href="https://github.com/mdn/interactive-examples">https://github.com/mdn/interactive-examples</a> and send us a pull request.</div> - <h2 id="语法">语法</h2> <pre class="syntaxbox"><strong>Operator:</strong> x /= y @@ -52,7 +50,3 @@ bar /= 0 // Infinity</pre> <li><a href="/en-US/docs/Web/JavaScript/Guide/Expressions_and_Operators#Assignment">Assignment operators in the JS guide</a></li> <li><a href="/en-US/docs/Web/JavaScript/Reference/Operators/Division">Division operator</a></li> </ul> - -<p> - <audio class="hidden"></audio> -</p> diff --git a/files/zh-cn/web/javascript/reference/operators/exponentiation/index.html b/files/zh-cn/web/javascript/reference/operators/exponentiation/index.html index 7e138abfa2..a98fd33e79 100644 --- a/files/zh-cn/web/javascript/reference/operators/exponentiation/index.html +++ b/files/zh-cn/web/javascript/reference/operators/exponentiation/index.html @@ -101,7 +101,3 @@ NaN ** 2 // NaN <li><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Unary_negation">Unary negation operator</a></li> <li><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Unary_plus">Unary plus operator</a></li> </ul> - -<p> - <audio class="hidden"></audio> -</p> diff --git a/files/zh-cn/web/javascript/reference/operators/exponentiation_assignment/index.html b/files/zh-cn/web/javascript/reference/operators/exponentiation_assignment/index.html index bd8e58da23..615530a4b4 100644 --- a/files/zh-cn/web/javascript/reference/operators/exponentiation_assignment/index.html +++ b/files/zh-cn/web/javascript/reference/operators/exponentiation_assignment/index.html @@ -53,7 +53,3 @@ bar **= 'foo' // NaN</pre> <li><a href="/en-US/docs/Web/JavaScript/Guide/Expressions_and_Operators#Assignment">Assignment operators in the JS guide</a></li> <li><a href="/en-US/docs/Web/JavaScript/Reference/Operators/Exponentiation">Exponentiation operator</a></li> </ul> - -<p> - <audio class="hidden"></audio> -</p> diff --git a/files/zh-cn/web/javascript/reference/operators/grouping/index.html b/files/zh-cn/web/javascript/reference/operators/grouping/index.html index 5856cc2324..77e572a4ce 100644 --- a/files/zh-cn/web/javascript/reference/operators/grouping/index.html +++ b/files/zh-cn/web/javascript/reference/operators/grouping/index.html @@ -13,8 +13,6 @@ translation_of: Web/JavaScript/Reference/Operators/Grouping <div>{{EmbedInteractiveExample("pages/js/expressions-groupingoperator.html")}}</div> -<p class="hidden">这些交互的事例资源都是基于Github的仓库.如果你想提交更多的交互事例,请克隆这个url<a href="https://github.com/mdn/interactive-examples">https://github.com/mdn/interactive-examples</a> 并且向我们发送合并请求。</p> - <h2 id="语法">语法</h2> <p>译者:下列语法是 MDN 上已知的最简单的之一。</p> diff --git a/files/zh-cn/web/javascript/reference/operators/inequality/index.html b/files/zh-cn/web/javascript/reference/operators/inequality/index.html index 6d5ed6ff6c..131144457c 100644 --- a/files/zh-cn/web/javascript/reference/operators/inequality/index.html +++ b/files/zh-cn/web/javascript/reference/operators/inequality/index.html @@ -14,8 +14,6 @@ translation_of: Web/JavaScript/Reference/Operators/Inequality <div>{{EmbedInteractiveExample("pages/js/expressions-inequality.html")}}</div> -<p class="hidden">该交互式示例的源代码存储在GitHub存储库中。如果您想为交互式示例项目做出贡献,请克隆<a href="https://github.com/mdn/interactive-examples">https://github.com/mdn/interactive-examples</a>并向我们发送请求请求。</p> - <h2 id="语法">语法</h2> <pre class="syntaxbox">x != y</pre> diff --git a/files/zh-cn/web/javascript/reference/operators/left_shift/index.html b/files/zh-cn/web/javascript/reference/operators/left_shift/index.html index 4bae0bcde0..3c4f0b3b6a 100644 --- a/files/zh-cn/web/javascript/reference/operators/left_shift/index.html +++ b/files/zh-cn/web/javascript/reference/operators/left_shift/index.html @@ -9,8 +9,6 @@ translation_of: Web/JavaScript/Reference/Operators/Left_shift <div>{{EmbedInteractiveExample("pages/js/expressions-left-shift.html")}}</div> -<div class="hidden">The source for this interactive example is stored in a GitHub repository. If you'd like to contribute to the interactive examples project, please clone <a href="https://github.com/mdn/interactive-examples">https://github.com/mdn/interactive-examples</a> and send us a pull request.</div> - <h2 id="语法">语法</h2> <pre class="syntaxbox"><code><var>a</var> << <var>b</var></code> @@ -66,7 +64,3 @@ translation_of: Web/JavaScript/Reference/Operators/Left_shift <li><a href="/en-US/docs/Web/JavaScript/Guide/Expressions_and_Operators#Bitwise">Bitwise operators in the JS guide</a></li> <li><a href="/en-US/docs/Web/JavaScript/Reference/Operators/Left_shift_assignment">Left shift assignment operator</a></li> </ul> - -<p> - <audio class="hidden"></audio> -</p> diff --git a/files/zh-cn/web/javascript/reference/operators/left_shift_assignment/index.html b/files/zh-cn/web/javascript/reference/operators/left_shift_assignment/index.html index e48b9616d0..c39333f30b 100644 --- a/files/zh-cn/web/javascript/reference/operators/left_shift_assignment/index.html +++ b/files/zh-cn/web/javascript/reference/operators/left_shift_assignment/index.html @@ -53,7 +53,3 @@ a <<= 2; // 20 <li><a href="/en-US/docs/Web/JavaScript/Guide/Expressions_and_Operators#Assignment">Assignment operators in the JS guide</a></li> <li><a href="/en-US/docs/Web/JavaScript/Reference/Operators/Left_shift">Left shift operator</a></li> </ul> - -<p> - <audio class="hidden"></audio> -</p> diff --git a/files/zh-cn/web/javascript/reference/operators/less_than_or_equal/index.html b/files/zh-cn/web/javascript/reference/operators/less_than_or_equal/index.html index 498dc2bbfd..91d207ef1f 100644 --- a/files/zh-cn/web/javascript/reference/operators/less_than_or_equal/index.html +++ b/files/zh-cn/web/javascript/reference/operators/less_than_or_equal/index.html @@ -9,8 +9,6 @@ translation_of: Web/JavaScript/Reference/Operators/Less_than_or_equal <div>{{EmbedInteractiveExample("pages/js/expressions-less-than-or-equal.html")}}</div> -<div class="hidden">The source for this interactive example is stored in a GitHub repository. If you'd like to contribute to the interactive examples project, please clone <a href="https://github.com/mdn/interactive-examples">https://github.com/mdn/interactive-examples</a> and send us a pull request.</div> - <h2 id="Syntax">Syntax</h2> <pre class="syntaxbox"> x <= y</pre> diff --git a/files/zh-cn/web/javascript/reference/operators/logical_and/index.html b/files/zh-cn/web/javascript/reference/operators/logical_and/index.html index e418a76518..531875401e 100644 --- a/files/zh-cn/web/javascript/reference/operators/logical_and/index.html +++ b/files/zh-cn/web/javascript/reference/operators/logical_and/index.html @@ -10,8 +10,6 @@ original_slug: Web/JavaScript/Reference/Operators/逻辑和 <div>{{EmbedInteractiveExample("pages/js/expressions-logical-and.html", "shorter")}}</div> -<div class="hidden">The source for this interactive example is stored in a GitHub repository. If you'd like to contribute to the interactive examples project, please clone <a href="https://github.com/mdn/interactive-examples">https://github.com/mdn/interactive-examples</a> and send us a pull request.</div> - <h2 id="Syntax">Syntax</h2> <pre class="syntaxbox"><em>expr1</em> && <em>expr2</em> diff --git a/files/zh-cn/web/javascript/reference/operators/logical_and_assignment/index.html b/files/zh-cn/web/javascript/reference/operators/logical_and_assignment/index.html index 4ee00585a5..0f4604f232 100644 --- a/files/zh-cn/web/javascript/reference/operators/logical_and_assignment/index.html +++ b/files/zh-cn/web/javascript/reference/operators/logical_and_assignment/index.html @@ -9,8 +9,6 @@ translation_of: Web/JavaScript/Reference/Operators/Logical_AND_assignment <div>{{EmbedInteractiveExample("pages/js/expressions-logical-and-assignment.html")}}</div> -<div class="hidden">The source for this interactive example is stored in a GitHub repository. If you'd like to contribute to the interactive examples project, please clone <a href="https://github.com/mdn/interactive-examples">https://github.com/mdn/interactive-examples</a> and send us a pull request.</div> - <h2 id="语法">语法</h2> <pre class="syntaxbox"><em>expr1</em> &&= <em>expr2</em> diff --git a/files/zh-cn/web/javascript/reference/operators/logical_not/index.html b/files/zh-cn/web/javascript/reference/operators/logical_not/index.html index e27ad4db4f..222c1e6e3b 100644 --- a/files/zh-cn/web/javascript/reference/operators/logical_not/index.html +++ b/files/zh-cn/web/javascript/reference/operators/logical_not/index.html @@ -9,8 +9,6 @@ translation_of: Web/JavaScript/Reference/Operators/Logical_NOT <div>{{EmbedInteractiveExample("pages/js/expressions-logical-not.html", "shorter")}}</div> -<div class="hidden">The source for this interactive example is stored in a GitHub repository. If you'd like to contribute to the interactive examples project, please clone <a href="https://github.com/mdn/interactive-examples">https://github.com/mdn/interactive-examples</a> and send us a pull request.</div> - <h2 id="语法">语法</h2> <pre class="syntaxbox">!<var>expr</var> @@ -98,7 +96,3 @@ n6 = !!Boolean(false) // !!falsy returns false</pre> <li>{{Glossary("Truthy")}}</li> <li>{{Glossary("Falsy")}}</li> </ul> - -<p> - <audio class="hidden"></audio> -</p> diff --git a/files/zh-cn/web/javascript/reference/operators/logical_nullish_assignment/index.html b/files/zh-cn/web/javascript/reference/operators/logical_nullish_assignment/index.html index c4fea43591..a97320ba3a 100644 --- a/files/zh-cn/web/javascript/reference/operators/logical_nullish_assignment/index.html +++ b/files/zh-cn/web/javascript/reference/operators/logical_nullish_assignment/index.html @@ -9,8 +9,6 @@ translation_of: Web/JavaScript/Reference/Operators/Logical_nullish_assignment <div>{{EmbedInteractiveExample("pages/js/expressions-logical-nullish-assignment.html")}}</div> -<div class="hidden">The source for this interactive example is stored in a GitHub repository. If you'd like to contribute to the interactive examples project, please clone <a href="https://github.com/mdn/interactive-examples">https://github.com/mdn/interactive-examples</a> and send us a pull request.</div> - <h2 id="语法">语法</h2> <pre class="syntaxbox"><em>expr1</em> ??= <em>expr2</em> diff --git a/files/zh-cn/web/javascript/reference/operators/logical_or/index.html b/files/zh-cn/web/javascript/reference/operators/logical_or/index.html index 3604b99140..d159e76866 100644 --- a/files/zh-cn/web/javascript/reference/operators/logical_or/index.html +++ b/files/zh-cn/web/javascript/reference/operators/logical_or/index.html @@ -9,8 +9,6 @@ translation_of: Web/JavaScript/Reference/Operators/Logical_OR <div>{{EmbedInteractiveExample("pages/js/expressions-logical-or.html", "shorter")}}</div> -<div class="hidden">The source for this interactive example is stored in a GitHub repository. If you'd like to contribute to the interactive examples project, please clone <a href="https://github.com/mdn/interactive-examples">https://github.com/mdn/interactive-examples</a> and send us a pull request.</div> - <h2 id="语法">语法</h2> <pre class="syntaxbox"><em>expr1</em> || <em>expr2</em> diff --git a/files/zh-cn/web/javascript/reference/operators/nullish_coalescing_operator/index.html b/files/zh-cn/web/javascript/reference/operators/nullish_coalescing_operator/index.html index a70b8dad19..6888b2f10b 100644 --- a/files/zh-cn/web/javascript/reference/operators/nullish_coalescing_operator/index.html +++ b/files/zh-cn/web/javascript/reference/operators/nullish_coalescing_operator/index.html @@ -18,9 +18,6 @@ translation_of: Web/JavaScript/Reference/Operators/Nullish_coalescing_operator <div>{{EmbedInteractiveExample("pages/js/expressions-nullishcoalescingoperator.html")}}</div> -<p class="hidden">The source for this interactive example is stored in a GitHub repository. If you'd like to contribute to the interactive examples project, please clone <a href="https://github.com/mdn/interactive-examples">https://github.com/mdn/interactive-examples</a> and send us a pull request.<br> - See <a href="https://github.com/mdn/interactive-examples/pull/1482#issuecomment-553841750">PR #1482</a> regarding the addition of this example.</p> - <h2 id="语法">语法</h2> <pre class="syntaxbox"><var>leftExpr</var> ?? <var>rightExpr</var> diff --git a/files/zh-cn/web/javascript/reference/operators/right_shift/index.html b/files/zh-cn/web/javascript/reference/operators/right_shift/index.html index 583da5cafe..b8275e16d7 100644 --- a/files/zh-cn/web/javascript/reference/operators/right_shift/index.html +++ b/files/zh-cn/web/javascript/reference/operators/right_shift/index.html @@ -9,8 +9,6 @@ translation_of: Web/JavaScript/Reference/Operators/Right_shift <div>{{EmbedInteractiveExample("pages/js/expressions-right-shift.html")}}</div> -<div class="hidden">The source for this interactive example is stored in a GitHub repository. If you'd like to contribute to the interactive examples project, please clone <a href="https://github.com/mdn/interactive-examples">https://github.com/mdn/interactive-examples</a> and send us a pull request.</div> - <h2 id="语法">语法</h2> <pre class="syntaxbox"><code><var>a</var> >> <var>b</var></code> @@ -69,7 +67,3 @@ translation_of: Web/JavaScript/Reference/Operators/Right_shift <li><a href="/en-US/docs/Web/JavaScript/Guide/Expressions_and_Operators#Bitwise">Bitwise operators in the JS guide</a></li> <li><a href="/en-US/docs/Web/JavaScript/Reference/Operators/Right_shift_assignment">Right shift assignment operator</a></li> </ul> - -<p> - <audio class="hidden"></audio> -</p> diff --git a/files/zh-cn/web/javascript/reference/operators/right_shift_assignment/index.html b/files/zh-cn/web/javascript/reference/operators/right_shift_assignment/index.html index 0ebfbbd51e..069f47a628 100644 --- a/files/zh-cn/web/javascript/reference/operators/right_shift_assignment/index.html +++ b/files/zh-cn/web/javascript/reference/operators/right_shift_assignment/index.html @@ -53,7 +53,3 @@ b >>= 2; // -2 (-00000000000000000000000000000010)</pre> <li><a href="/en-US/docs/Web/JavaScript/Guide/Expressions_and_Operators#Assignment">Assignment operators in the JS guide</a></li> <li><a href="/en-US/docs/Web/JavaScript/Reference/Operators/Right_shift">Right shift operator</a></li> </ul> - -<p> - <audio class="hidden"></audio> -</p> diff --git a/files/zh-cn/web/javascript/reference/operators/spread_syntax/index.html b/files/zh-cn/web/javascript/reference/operators/spread_syntax/index.html index 3f21c5b960..631a2ff8ca 100644 --- a/files/zh-cn/web/javascript/reference/operators/spread_syntax/index.html +++ b/files/zh-cn/web/javascript/reference/operators/spread_syntax/index.html @@ -14,8 +14,6 @@ translation_of: Web/JavaScript/Reference/Operators/Spread_syntax <div>{{EmbedInteractiveExample("pages/js/expressions-spreadsyntax.html")}}</div> -<p class="hidden">该示例的源代码存放于Github中,如果你想进行修订,请先克隆<a href="https://github.com/mdn/interactive-examples">https://github.com/mdn/interactive-examples</a>, 修改完成之后再通过pull request的方式推送给源仓库。</p> - <h2 id="语法">语法</h2> <p>函数调用:</p> diff --git a/files/zh-cn/web/javascript/reference/operators/strict_equality/index.html b/files/zh-cn/web/javascript/reference/operators/strict_equality/index.html index 1b8211841a..a352c8407b 100644 --- a/files/zh-cn/web/javascript/reference/operators/strict_equality/index.html +++ b/files/zh-cn/web/javascript/reference/operators/strict_equality/index.html @@ -9,8 +9,6 @@ translation_of: Web/JavaScript/Reference/Operators/Strict_equality <div>{{EmbedInteractiveExample("pages/js/expressions-strict-equality.html")}}</div> -<div class="hidden">The source for this interactive example is stored in a GitHub repository. If you'd like to contribute to the interactive examples project, please clone <a href="https://github.com/mdn/interactive-examples">https://github.com/mdn/interactive-examples</a> and send us a pull request.</div> - <h2 id="语法">语法</h2> <pre class="syntaxbox">x === y</pre> diff --git a/files/zh-cn/web/javascript/reference/operators/strict_inequality/index.html b/files/zh-cn/web/javascript/reference/operators/strict_inequality/index.html index 26efd1748f..083c9470a7 100644 --- a/files/zh-cn/web/javascript/reference/operators/strict_inequality/index.html +++ b/files/zh-cn/web/javascript/reference/operators/strict_inequality/index.html @@ -9,8 +9,6 @@ translation_of: Web/JavaScript/Reference/Operators/Strict_inequality <div>{{EmbedInteractiveExample("pages/js/expressions-strict-equality.html")}}</div> -<div class="hidden">The source for this interactive example is stored in a GitHub repository. If you'd like to contribute to the interactive examples project, please clone <a href="https://github.com/mdn/interactive-examples">https://github.com/mdn/interactive-examples</a> and send us a pull request.</div> - <h2 id="语法">语法</h2> <pre class="syntaxbox">x !== y</pre> diff --git a/files/zh-cn/web/javascript/reference/operators/subtraction/index.html b/files/zh-cn/web/javascript/reference/operators/subtraction/index.html index c4307e2ace..7eb1f7814a 100644 --- a/files/zh-cn/web/javascript/reference/operators/subtraction/index.html +++ b/files/zh-cn/web/javascript/reference/operators/subtraction/index.html @@ -61,7 +61,3 @@ translation_of: Web/JavaScript/Reference/Operators/Subtraction <li><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Unary_negation">Unary negation operator</a></li> <li><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Unary_plus">Unary plus operator</a></li> </ul> - -<p> - <audio class="hidden"></audio> -</p> diff --git a/files/zh-cn/web/javascript/reference/operators/subtraction_assignment/index.html b/files/zh-cn/web/javascript/reference/operators/subtraction_assignment/index.html index 9d96a67f7e..8052f01b9e 100644 --- a/files/zh-cn/web/javascript/reference/operators/subtraction_assignment/index.html +++ b/files/zh-cn/web/javascript/reference/operators/subtraction_assignment/index.html @@ -53,7 +53,3 @@ bar -= 'foo' // NaN</pre> <li><a href="/en-US/docs/Web/JavaScript/Guide/Expressions_and_Operators#Assignment">Assignment operators in the JS guide</a></li> <li><a href="/en-US/docs/Web/JavaScript/Reference/Operators/Subtraction">Subtraction operator</a></li> </ul> - -<p> - <audio class="hidden"></audio> -</p> diff --git a/files/zh-cn/web/javascript/reference/operators/unary_negation/index.html b/files/zh-cn/web/javascript/reference/operators/unary_negation/index.html index 887a79a2a0..97eac43a02 100644 --- a/files/zh-cn/web/javascript/reference/operators/unary_negation/index.html +++ b/files/zh-cn/web/javascript/reference/operators/unary_negation/index.html @@ -9,8 +9,6 @@ translation_of: Web/JavaScript/Reference/Operators/Unary_negation <div>{{EmbedInteractiveExample("pages/js/expressions-unary-negation.html")}}</div> -<div class="hidden">The source for this interactive example is stored in a GitHub repository. If you'd like to contribute to the interactive examples project, please clone <a href="https://github.com/mdn/interactive-examples">https://github.com/mdn/interactive-examples</a> and send us a pull request.</div> - <h2 id="语法">语法</h2> <pre class="syntaxbox"><strong>Operator:</strong> -<var>x</var> diff --git a/files/zh-cn/web/javascript/reference/operators/unsigned_right_shift/index.html b/files/zh-cn/web/javascript/reference/operators/unsigned_right_shift/index.html index 52f18ea92c..eb7b984194 100644 --- a/files/zh-cn/web/javascript/reference/operators/unsigned_right_shift/index.html +++ b/files/zh-cn/web/javascript/reference/operators/unsigned_right_shift/index.html @@ -9,8 +9,6 @@ translation_of: Web/JavaScript/Reference/Operators/Unsigned_right_shift <div>{{EmbedInteractiveExample("pages/js/expressions-unsigned-right-shift.html")}}</div> -<div class="hidden">The source for this interactive example is stored in a GitHub repository. If you'd like to contribute to the interactive examples project, please clone <a href="https://github.com/mdn/interactive-examples">https://github.com/mdn/interactive-examples</a> and send us a pull request.</div> - <h2 id="语法">语法</h2> <pre class="syntaxbox"><code><var>a</var> >>> <var>b</var></code> |
