From d4625fc3adef7da9a077b195800094d03488c50c Mon Sep 17 00:00:00 2001 From: t7yang Date: Fri, 28 May 2021 22:17:15 +0800 Subject: remove bcd paragraph for zh-CN --- .../javascript/reference/operators/destructuring_assignment/index.html | 2 -- .../zh-cn/web/javascript/reference/operators/function_star_/index.html | 2 -- files/zh-cn/web/javascript/reference/operators/grouping/index.html | 2 -- files/zh-cn/web/javascript/reference/operators/in/index.html | 2 -- files/zh-cn/web/javascript/reference/operators/new.target/index.html | 2 -- files/zh-cn/web/javascript/reference/operators/new/index.html | 2 -- .../web/javascript/reference/operators/object_initializer/index.html | 2 -- .../web/javascript/reference/operators/property_accessors/index.html | 2 -- files/zh-cn/web/javascript/reference/operators/spread_syntax/index.html | 2 -- files/zh-cn/web/javascript/reference/operators/super/index.html | 2 -- files/zh-cn/web/javascript/reference/operators/this/index.html | 2 -- files/zh-cn/web/javascript/reference/operators/typeof/index.html | 2 -- files/zh-cn/web/javascript/reference/operators/yield/index.html | 2 -- files/zh-cn/web/javascript/reference/operators/yield_star_/index.html | 2 -- 14 files changed, 28 deletions(-) (limited to 'files/zh-cn/web/javascript/reference/operators') diff --git a/files/zh-cn/web/javascript/reference/operators/destructuring_assignment/index.html b/files/zh-cn/web/javascript/reference/operators/destructuring_assignment/index.html index b0b6f81ea0..4c6c4a4457 100644 --- a/files/zh-cn/web/javascript/reference/operators/destructuring_assignment/index.html +++ b/files/zh-cn/web/javascript/reference/operators/destructuring_assignment/index.html @@ -408,8 +408,6 @@ const {self, prot} = obj;

浏览器兼容

- -

{{Compat("javascript.operators.destructuring")}}

相关链接

diff --git a/files/zh-cn/web/javascript/reference/operators/function_star_/index.html b/files/zh-cn/web/javascript/reference/operators/function_star_/index.html index 1f607de5d9..a34ac86901 100644 --- a/files/zh-cn/web/javascript/reference/operators/function_star_/index.html +++ b/files/zh-cn/web/javascript/reference/operators/function_star_/index.html @@ -70,8 +70,6 @@ translation_of: Web/JavaScript/Reference/Operators/function*

浏览器兼容

- -

{{Compat("javascript.operators.function_star")}}

相关链接

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 837cdf366f..5856cc2324 100644 --- a/files/zh-cn/web/javascript/reference/operators/grouping/index.html +++ b/files/zh-cn/web/javascript/reference/operators/grouping/index.html @@ -80,8 +80,6 @@ a * c + b * c // 9

浏览器兼容性

- -

{{Compat("javascript.operators.grouping")}}

相关链接

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 acd8d18255..2ac7bb0ed4 100644 --- a/files/zh-cn/web/javascript/reference/operators/in/index.html +++ b/files/zh-cn/web/javascript/reference/operators/in/index.html @@ -130,8 +130,6 @@ trees[3] = undefined;

浏览器兼容

- -

{{Compat("javascript.operators.in")}}

相关链接

diff --git a/files/zh-cn/web/javascript/reference/operators/new.target/index.html b/files/zh-cn/web/javascript/reference/operators/new.target/index.html index 7d1c41ec89..63fd2f1b8a 100644 --- a/files/zh-cn/web/javascript/reference/operators/new.target/index.html +++ b/files/zh-cn/web/javascript/reference/operators/new.target/index.html @@ -85,8 +85,6 @@ var d = new D(); // logs class D extends C{constructor(){super();}}

浏览器兼容

- -

{{Compat("javascript.operators.new_target")}}

相关链接

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 16ae8bfd75..e5b6ef0795 100644 --- a/files/zh-cn/web/javascript/reference/operators/new/index.html +++ b/files/zh-cn/web/javascript/reference/operators/new/index.html @@ -188,8 +188,6 @@ var car2 = new Car("Nissan", "300ZX", 1992, ken);

浏览器兼容性

- -

{{Compat("javascript.operators.new")}}

参见

diff --git a/files/zh-cn/web/javascript/reference/operators/object_initializer/index.html b/files/zh-cn/web/javascript/reference/operators/object_initializer/index.html index 90fb0e6a8a..0cf6e54f9d 100644 --- a/files/zh-cn/web/javascript/reference/operators/object_initializer/index.html +++ b/files/zh-cn/web/javascript/reference/operators/object_initializer/index.html @@ -300,8 +300,6 @@ assert(obj3.__proto__ === 17);

浏览器兼容

- -

{{Compat("javascript.operators.object_initializer")}}

相关链接

diff --git a/files/zh-cn/web/javascript/reference/operators/property_accessors/index.html b/files/zh-cn/web/javascript/reference/operators/property_accessors/index.html index f989fe1f22..c7c482256d 100644 --- a/files/zh-cn/web/javascript/reference/operators/property_accessors/index.html +++ b/files/zh-cn/web/javascript/reference/operators/property_accessors/index.html @@ -141,8 +141,6 @@ console.log(object[bar]);

浏览器兼容性

- -

{{Compat("javascript.operators.property_accessors")}}

参见

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 4bb2ff8b45..aaa1544a4c 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 @@ -234,8 +234,6 @@ var array = [...obj]; // TypeError: obj is not iterable

浏览器兼容性

- -

{{Compat("javascript.operators.spread")}}

相关链接

diff --git a/files/zh-cn/web/javascript/reference/operators/super/index.html b/files/zh-cn/web/javascript/reference/operators/super/index.html index 6681f759ab..1f279cb42f 100644 --- a/files/zh-cn/web/javascript/reference/operators/super/index.html +++ b/files/zh-cn/web/javascript/reference/operators/super/index.html @@ -172,8 +172,6 @@ obj2.method2(); // logs "method 1"

浏览器兼容

- -

{{Compat("javascript.operators.super")}}

相关链接

diff --git a/files/zh-cn/web/javascript/reference/operators/this/index.html b/files/zh-cn/web/javascript/reference/operators/this/index.html index 0962ff2a6e..6ea1eb67c6 100644 --- a/files/zh-cn/web/javascript/reference/operators/this/index.html +++ b/files/zh-cn/web/javascript/reference/operators/this/index.html @@ -486,8 +486,6 @@ bird.sayBye(); // Bye from Ferrari

浏览器兼容

- -

{{Compat("javascript.operators.this")}}

相关链接

diff --git a/files/zh-cn/web/javascript/reference/operators/typeof/index.html b/files/zh-cn/web/javascript/reference/operators/typeof/index.html index 9ecc801903..41cf3c8da9 100644 --- a/files/zh-cn/web/javascript/reference/operators/typeof/index.html +++ b/files/zh-cn/web/javascript/reference/operators/typeof/index.html @@ -259,8 +259,6 @@ class newClass{};

浏览器兼容

- -

{{Compat("javascript.operators.typeof")}}

IE 特别提示

diff --git a/files/zh-cn/web/javascript/reference/operators/yield/index.html b/files/zh-cn/web/javascript/reference/operators/yield/index.html index 58e9adfc00..a0a3b92756 100644 --- a/files/zh-cn/web/javascript/reference/operators/yield/index.html +++ b/files/zh-cn/web/javascript/reference/operators/yield/index.html @@ -90,8 +90,6 @@ console.log(appleStore.next()); // { value: undefined, done: true }

浏览器兼容性

- -

{{Compat("javascript.operators.yield")}}

相关链接

diff --git a/files/zh-cn/web/javascript/reference/operators/yield_star_/index.html b/files/zh-cn/web/javascript/reference/operators/yield_star_/index.html index c53be56902..bd1e86393a 100644 --- a/files/zh-cn/web/javascript/reference/operators/yield_star_/index.html +++ b/files/zh-cn/web/javascript/reference/operators/yield_star_/index.html @@ -131,8 +131,6 @@ console.log(result); // "foo"

浏览器兼容

- -

{{Compat("javascript.operators.yield_star")}}

Firefox 特别提示

-- cgit v1.2.3-54-g00ecf