From fb5762e3c44268c9342416e8404a1cd9a8055855 Mon Sep 17 00:00:00 2001 From: Masahiro FUJIMOTO Date: Mon, 27 Sep 2021 00:36:47 +0900 Subject: 関係演算子の文書の変換準備 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../reference/operators/greater_than/index.html | 100 ------------------ .../reference/operators/greater_than/index.md | 100 ++++++++++++++++++ .../operators/greater_than_or_equal/index.html | 100 ------------------ .../operators/greater_than_or_equal/index.md | 100 ++++++++++++++++++ .../reference/operators/less_than/index.html | 115 --------------------- .../reference/operators/less_than/index.md | 115 +++++++++++++++++++++ .../operators/less_than_or_equal/index.html | 102 ------------------ .../operators/less_than_or_equal/index.md | 102 ++++++++++++++++++ 8 files changed, 417 insertions(+), 417 deletions(-) delete mode 100644 files/ja/web/javascript/reference/operators/greater_than/index.html create mode 100644 files/ja/web/javascript/reference/operators/greater_than/index.md delete mode 100644 files/ja/web/javascript/reference/operators/greater_than_or_equal/index.html create mode 100644 files/ja/web/javascript/reference/operators/greater_than_or_equal/index.md delete mode 100644 files/ja/web/javascript/reference/operators/less_than/index.html create mode 100644 files/ja/web/javascript/reference/operators/less_than/index.md delete mode 100644 files/ja/web/javascript/reference/operators/less_than_or_equal/index.html create mode 100644 files/ja/web/javascript/reference/operators/less_than_or_equal/index.md (limited to 'files') diff --git a/files/ja/web/javascript/reference/operators/greater_than/index.html b/files/ja/web/javascript/reference/operators/greater_than/index.html deleted file mode 100644 index e5a05c3bbb..0000000000 --- a/files/ja/web/javascript/reference/operators/greater_than/index.html +++ /dev/null @@ -1,100 +0,0 @@ ---- -title: 大なり (>) -slug: Web/JavaScript/Reference/Operators/Greater_than -tags: - - JavaScript - - Language feature - - Operator - - Reference -translation_of: Web/JavaScript/Reference/Operators/Greater_than ---- -
{{jsSidebar("Operators")}}
- -

大なり演算子 (>) は、左辺のオペランドが右辺のオペランドより大きい場合は true を返し、それ以外の場合は false を返します。

- -
{{EmbedInteractiveExample("pages/js/expressions-greater-than.html")}}
- - - -

構文

- -
x > y
- -

解説

- -

オペランドは、 抽象関係比較 アルゴリズムを使用して比較されます。このアルゴリズムの概要については、 小なり 演算子のドキュメントを参照して下さい。

- -

- -

文字列と文字列の比較

- -
console.log("a" > "b");        // false
-console.log("a" > "a");        // false
-console.log("a" > "3");        // true
- -

文字列と数値の比較

- -
console.log("5" > 3);          // true
-console.log("3" > 3);          // false
-console.log("3" > 5);          // false
-
-console.log("hello" > 5);      // false
-console.log(5 > "hello");      // false
-
-console.log("5" > 3n);         // true
-console.log("3" > 5n);         // false
- -

数値と数値の比較

- -
console.log(5 > 3);            // true
-console.log(3 > 3);            // false
-console.log(3 > 5);            // false
- -

数値と BigInt の比較

- -
console.log(5n > 3);           // true
-console.log(3 > 5n);           // false
- -

ブール値、 null 、 undefined 、 NaN の比較

- -
console.log(true > false);     // true
-console.log(false > true);     // false
-
-console.log(true > 0);         // true
-console.log(true > 1);         // false
-
-console.log(null > 0);         // false
-console.log(1 > null);         // true
-
-console.log(undefined > 3);    // false
-console.log(3 > undefined);    // false
-
-console.log(3 > NaN);          // false
-console.log(NaN > 3);          // false
- -

仕様

- - - - - - - - - - -
仕様
{{SpecName('ESDraft', '#sec-relational-operators', 'Relational operators')}}
- -

ブラウザーの互換性

- - - -

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

- -

関連項目

- - diff --git a/files/ja/web/javascript/reference/operators/greater_than/index.md b/files/ja/web/javascript/reference/operators/greater_than/index.md new file mode 100644 index 0000000000..e5a05c3bbb --- /dev/null +++ b/files/ja/web/javascript/reference/operators/greater_than/index.md @@ -0,0 +1,100 @@ +--- +title: 大なり (>) +slug: Web/JavaScript/Reference/Operators/Greater_than +tags: + - JavaScript + - Language feature + - Operator + - Reference +translation_of: Web/JavaScript/Reference/Operators/Greater_than +--- +
{{jsSidebar("Operators")}}
+ +

大なり演算子 (>) は、左辺のオペランドが右辺のオペランドより大きい場合は true を返し、それ以外の場合は false を返します。

+ +
{{EmbedInteractiveExample("pages/js/expressions-greater-than.html")}}
+ + + +

構文

+ +
x > y
+ +

解説

+ +

オペランドは、 抽象関係比較 アルゴリズムを使用して比較されます。このアルゴリズムの概要については、 小なり 演算子のドキュメントを参照して下さい。

+ +

+ +

文字列と文字列の比較

+ +
console.log("a" > "b");        // false
+console.log("a" > "a");        // false
+console.log("a" > "3");        // true
+ +

文字列と数値の比較

+ +
console.log("5" > 3);          // true
+console.log("3" > 3);          // false
+console.log("3" > 5);          // false
+
+console.log("hello" > 5);      // false
+console.log(5 > "hello");      // false
+
+console.log("5" > 3n);         // true
+console.log("3" > 5n);         // false
+ +

数値と数値の比較

+ +
console.log(5 > 3);            // true
+console.log(3 > 3);            // false
+console.log(3 > 5);            // false
+ +

数値と BigInt の比較

+ +
console.log(5n > 3);           // true
+console.log(3 > 5n);           // false
+ +

ブール値、 null 、 undefined 、 NaN の比較

+ +
console.log(true > false);     // true
+console.log(false > true);     // false
+
+console.log(true > 0);         // true
+console.log(true > 1);         // false
+
+console.log(null > 0);         // false
+console.log(1 > null);         // true
+
+console.log(undefined > 3);    // false
+console.log(3 > undefined);    // false
+
+console.log(3 > NaN);          // false
+console.log(NaN > 3);          // false
+ +

仕様

+ + + + + + + + + + +
仕様
{{SpecName('ESDraft', '#sec-relational-operators', 'Relational operators')}}
+ +

ブラウザーの互換性

+ + + +

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

+ +

関連項目

+ + diff --git a/files/ja/web/javascript/reference/operators/greater_than_or_equal/index.html b/files/ja/web/javascript/reference/operators/greater_than_or_equal/index.html deleted file mode 100644 index 12800994b8..0000000000 --- a/files/ja/web/javascript/reference/operators/greater_than_or_equal/index.html +++ /dev/null @@ -1,100 +0,0 @@ ---- -title: 大なりイコール (>=) -slug: Web/JavaScript/Reference/Operators/Greater_than_or_equal -tags: - - JavaScript - - Language feature - - Operator - - Reference -translation_of: Web/JavaScript/Reference/Operators/Greater_than_or_equal ---- -
{{jsSidebar("Operators")}}
- -

大なりイコール演算子 (>=) は、左辺のオペランドが右辺のオペランド以上の場合は true を返し、それ以外の場合は false を返します。

- -
{{EmbedInteractiveExample("pages/js/expressions-greater-than-or-equal.html")}}
- - - -

構文

- -
 x >= y
- -

解説

- -

オペランドは、抽象関係比較アルゴリズムを使用して比較されます。 このアルゴリズムの概要は小なり演算子のドキュメントを参照して下さい。

- -

- -

文字列と文字列の比較

- -
console.log("a" >= "b");     // false
-console.log("a" >= "a");     // true
-console.log("a" >= "3");     // true
-
- -

文字列と数値の比較

- -
console.log("5" >= 3);       // true
-console.log("3" >= 3);       // true
-console.log("3" >= 5);       // false
-
-console.log("hello" >= 5);   // false
-console.log(5 >= "hello");   // false
- -

数値と数値の比較

- -
console.log(5 >= 3);         // true
-console.log(3 >= 3);         // true
-console.log(3 >= 5);         // false
- -

数値と BigInt の比較

- -
console.log(5n >= 3);        // true
-console.log(3 >= 3n);        // true
-console.log(3 >= 5n);        // false
- -

ブール値、 null 、 undefined 、 NaN の比較

- -
console.log(true >= false);  // true
-console.log(true >= true);   // true
-console.log(false >= true);  // false
-
-console.log(true >= 0);      // true
-console.log(true >= 1);      // true
-
-console.log(null >= 0);      // true
-console.log(1 >= null);      // true
-
-console.log(undefined >= 3); // false
-console.log(3 >= undefined); // false
-
-console.log(3 >= NaN);       // false
-console.log(NaN >= 3);       // false
- -

仕様

- - - - - - - - - - -
仕様
{{SpecName('ESDraft', '#sec-relational-operators', 'Relational operators')}}
- -

ブラウザーの互換性

- - - -

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

- -

関連項目

- - diff --git a/files/ja/web/javascript/reference/operators/greater_than_or_equal/index.md b/files/ja/web/javascript/reference/operators/greater_than_or_equal/index.md new file mode 100644 index 0000000000..12800994b8 --- /dev/null +++ b/files/ja/web/javascript/reference/operators/greater_than_or_equal/index.md @@ -0,0 +1,100 @@ +--- +title: 大なりイコール (>=) +slug: Web/JavaScript/Reference/Operators/Greater_than_or_equal +tags: + - JavaScript + - Language feature + - Operator + - Reference +translation_of: Web/JavaScript/Reference/Operators/Greater_than_or_equal +--- +
{{jsSidebar("Operators")}}
+ +

大なりイコール演算子 (>=) は、左辺のオペランドが右辺のオペランド以上の場合は true を返し、それ以外の場合は false を返します。

+ +
{{EmbedInteractiveExample("pages/js/expressions-greater-than-or-equal.html")}}
+ + + +

構文

+ +
 x >= y
+ +

解説

+ +

オペランドは、抽象関係比較アルゴリズムを使用して比較されます。 このアルゴリズムの概要は小なり演算子のドキュメントを参照して下さい。

+ +

+ +

文字列と文字列の比較

+ +
console.log("a" >= "b");     // false
+console.log("a" >= "a");     // true
+console.log("a" >= "3");     // true
+
+ +

文字列と数値の比較

+ +
console.log("5" >= 3);       // true
+console.log("3" >= 3);       // true
+console.log("3" >= 5);       // false
+
+console.log("hello" >= 5);   // false
+console.log(5 >= "hello");   // false
+ +

数値と数値の比較

+ +
console.log(5 >= 3);         // true
+console.log(3 >= 3);         // true
+console.log(3 >= 5);         // false
+ +

数値と BigInt の比較

+ +
console.log(5n >= 3);        // true
+console.log(3 >= 3n);        // true
+console.log(3 >= 5n);        // false
+ +

ブール値、 null 、 undefined 、 NaN の比較

+ +
console.log(true >= false);  // true
+console.log(true >= true);   // true
+console.log(false >= true);  // false
+
+console.log(true >= 0);      // true
+console.log(true >= 1);      // true
+
+console.log(null >= 0);      // true
+console.log(1 >= null);      // true
+
+console.log(undefined >= 3); // false
+console.log(3 >= undefined); // false
+
+console.log(3 >= NaN);       // false
+console.log(NaN >= 3);       // false
+ +

仕様

+ + + + + + + + + + +
仕様
{{SpecName('ESDraft', '#sec-relational-operators', 'Relational operators')}}
+ +

ブラウザーの互換性

+ + + +

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

+ +

関連項目

+ + diff --git a/files/ja/web/javascript/reference/operators/less_than/index.html b/files/ja/web/javascript/reference/operators/less_than/index.html deleted file mode 100644 index e3d838febc..0000000000 --- a/files/ja/web/javascript/reference/operators/less_than/index.html +++ /dev/null @@ -1,115 +0,0 @@ ---- -title: 小なり (<) -slug: Web/JavaScript/Reference/Operators/Less_than -tags: - - JavaScript - - Language feature - - Operator - - Reference -translation_of: Web/JavaScript/Reference/Operators/Less_than ---- -
{{jsSidebar("Operators")}}
- -

小なり演算子 (<) は、左辺のオペランドが右辺のオペランドより小さい場合は true を返し、それ以外の場合は false を返します。

- -
{{EmbedInteractiveExample("pages/js/expressions-less-than.html")}}
- - - -

構文

- -
 x < y
- -

説明

- -

オペランドは、以下に大まかに要約されている抽象関係比較アルゴリズムを使用して比較されます:

- - - -

- -

文字列と文字列の比較

- -
console.log("a" < "b");        // true
-console.log("a" < "a");        // false
-console.log("a" < "3");        // false
- -

文字列と数値の比較

- -
console.log("5" < 3);          // false
-console.log("3" < 3);          // false
-console.log("3" < 5);          // true
-
-console.log("hello" < 5);      // false
-console.log(5 < "hello");      // false
-
-console.log("5" < 3n);         // false
-console.log("3" < 5n);         // true
- -

数値と数値の比較

- -
console.log(5 < 3);            // false
-console.log(3 < 3);            // false
-console.log(3 < 5);            // true
- -

数値と BigInt の比較

- -
console.log(5n < 3);           // false
-console.log(3 < 5n);           // true
- -

ブール値, null, undefined, NaN の比較

- -
console.log(true < false);     // false
-console.log(false < true);     // true
-
-console.log(0 < true);         // true
-console.log(true < 1);         // false
-
-console.log(null < 0);         // false
-console.log(null < 1);         // true
-
-console.log(undefined < 3);    // false
-console.log(3 < undefined);    // false
-
-console.log(3 < NaN);          // false
-console.log(NaN < 3);          // false
- -

仕様

- - - - - - - - - - -
仕様
{{SpecName('ESDraft', '#sec-relational-operators', 'Relational operators')}}
- -

ブラウザー実装状況

- - - -

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

- -

関連項目

- - diff --git a/files/ja/web/javascript/reference/operators/less_than/index.md b/files/ja/web/javascript/reference/operators/less_than/index.md new file mode 100644 index 0000000000..e3d838febc --- /dev/null +++ b/files/ja/web/javascript/reference/operators/less_than/index.md @@ -0,0 +1,115 @@ +--- +title: 小なり (<) +slug: Web/JavaScript/Reference/Operators/Less_than +tags: + - JavaScript + - Language feature + - Operator + - Reference +translation_of: Web/JavaScript/Reference/Operators/Less_than +--- +
{{jsSidebar("Operators")}}
+ +

小なり演算子 (<) は、左辺のオペランドが右辺のオペランドより小さい場合は true を返し、それ以外の場合は false を返します。

+ +
{{EmbedInteractiveExample("pages/js/expressions-less-than.html")}}
+ + + +

構文

+ +
 x < y
+ +

説明

+ +

オペランドは、以下に大まかに要約されている抽象関係比較アルゴリズムを使用して比較されます:

+ + + +

+ +

文字列と文字列の比較

+ +
console.log("a" < "b");        // true
+console.log("a" < "a");        // false
+console.log("a" < "3");        // false
+ +

文字列と数値の比較

+ +
console.log("5" < 3);          // false
+console.log("3" < 3);          // false
+console.log("3" < 5);          // true
+
+console.log("hello" < 5);      // false
+console.log(5 < "hello");      // false
+
+console.log("5" < 3n);         // false
+console.log("3" < 5n);         // true
+ +

数値と数値の比較

+ +
console.log(5 < 3);            // false
+console.log(3 < 3);            // false
+console.log(3 < 5);            // true
+ +

数値と BigInt の比較

+ +
console.log(5n < 3);           // false
+console.log(3 < 5n);           // true
+ +

ブール値, null, undefined, NaN の比較

+ +
console.log(true < false);     // false
+console.log(false < true);     // true
+
+console.log(0 < true);         // true
+console.log(true < 1);         // false
+
+console.log(null < 0);         // false
+console.log(null < 1);         // true
+
+console.log(undefined < 3);    // false
+console.log(3 < undefined);    // false
+
+console.log(3 < NaN);          // false
+console.log(NaN < 3);          // false
+ +

仕様

+ + + + + + + + + + +
仕様
{{SpecName('ESDraft', '#sec-relational-operators', 'Relational operators')}}
+ +

ブラウザー実装状況

+ + + +

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

+ +

関連項目

+ + diff --git a/files/ja/web/javascript/reference/operators/less_than_or_equal/index.html b/files/ja/web/javascript/reference/operators/less_than_or_equal/index.html deleted file mode 100644 index dce2c02d1b..0000000000 --- a/files/ja/web/javascript/reference/operators/less_than_or_equal/index.html +++ /dev/null @@ -1,102 +0,0 @@ ---- -title: 小なりイコール (<=) -slug: Web/JavaScript/Reference/Operators/Less_than_or_equal -tags: - - JavaScript - - Language feature - - Operator - - Reference - - 演算子 - - 言語機能 -translation_of: Web/JavaScript/Reference/Operators/Less_than_or_equal ---- -
{{jsSidebar("Operators")}}
- -

小なりイコール演算子 (<=) は、左のオペランドが右のオペランドより小さいか等しい場合に true を返し、それ以外の場合は false を返します。

- -
{{EmbedInteractiveExample("pages/js/expressions-less-than-or-equal.html")}}
- - - -

構文

- -
 x <= y
- -

解説

- -

オペランドは抽象関係比較アルゴリズムを使用して比較されます。このアルゴリズムの概要は大なり演算子のドキュメントをご覧ください。

- -

- -

文字列と文字列の比較

- -
console.log("a" <= "b");     // true
-console.log("a" <= "a");     // true
-console.log("a" <= "3");     // false
-
- -

文字列と数値の比較

- -
console.log("5" <= 3);       // false
-console.log("3" <= 3);       // true
-console.log("3" <= 5);       // true
-
-console.log("hello" <= 5);   // false
-console.log(5 <= "hello");   // false
- -

数値と数値の比較

- -
console.log(5 <= 3);         // false
-console.log(3 <= 3);         // true
-console.log(3 <= 5);         // true
- -

数値と BigInt の比較

- -
console.log(5n <= 3);        // false
-console.log(3 <= 3n);        // true
-console.log(3 <= 5n);        // true
- -

論理型, null, undefined, NaN の比較

- -
console.log(true <= false);  // false
-console.log(true <= true);   // true
-console.log(false <= true);  // true
-
-console.log(true <= 0);      // false
-console.log(true <= 1);      // true
-
-console.log(null <= 0);      // true
-console.log(1 <= null);      // false
-
-console.log(undefined <= 3); // false
-console.log(3 <= undefined); // false
-
-console.log(3 <= NaN);       // false
-console.log(NaN <= 3);       // false
- -

仕様書

- - - - - - - - - - - - -
仕様書
{{SpecName('ESDraft', '#sec-relational-operators', 'Relational operators')}}
- -

ブラウザーの互換性

- -

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

- -

関連情報

- - diff --git a/files/ja/web/javascript/reference/operators/less_than_or_equal/index.md b/files/ja/web/javascript/reference/operators/less_than_or_equal/index.md new file mode 100644 index 0000000000..dce2c02d1b --- /dev/null +++ b/files/ja/web/javascript/reference/operators/less_than_or_equal/index.md @@ -0,0 +1,102 @@ +--- +title: 小なりイコール (<=) +slug: Web/JavaScript/Reference/Operators/Less_than_or_equal +tags: + - JavaScript + - Language feature + - Operator + - Reference + - 演算子 + - 言語機能 +translation_of: Web/JavaScript/Reference/Operators/Less_than_or_equal +--- +
{{jsSidebar("Operators")}}
+ +

小なりイコール演算子 (<=) は、左のオペランドが右のオペランドより小さいか等しい場合に true を返し、それ以外の場合は false を返します。

+ +
{{EmbedInteractiveExample("pages/js/expressions-less-than-or-equal.html")}}
+ + + +

構文

+ +
 x <= y
+ +

解説

+ +

オペランドは抽象関係比較アルゴリズムを使用して比較されます。このアルゴリズムの概要は大なり演算子のドキュメントをご覧ください。

+ +

+ +

文字列と文字列の比較

+ +
console.log("a" <= "b");     // true
+console.log("a" <= "a");     // true
+console.log("a" <= "3");     // false
+
+ +

文字列と数値の比較

+ +
console.log("5" <= 3);       // false
+console.log("3" <= 3);       // true
+console.log("3" <= 5);       // true
+
+console.log("hello" <= 5);   // false
+console.log(5 <= "hello");   // false
+ +

数値と数値の比較

+ +
console.log(5 <= 3);         // false
+console.log(3 <= 3);         // true
+console.log(3 <= 5);         // true
+ +

数値と BigInt の比較

+ +
console.log(5n <= 3);        // false
+console.log(3 <= 3n);        // true
+console.log(3 <= 5n);        // true
+ +

論理型, null, undefined, NaN の比較

+ +
console.log(true <= false);  // false
+console.log(true <= true);   // true
+console.log(false <= true);  // true
+
+console.log(true <= 0);      // false
+console.log(true <= 1);      // true
+
+console.log(null <= 0);      // true
+console.log(1 <= null);      // false
+
+console.log(undefined <= 3); // false
+console.log(3 <= undefined); // false
+
+console.log(3 <= NaN);       // false
+console.log(NaN <= 3);       // false
+ +

仕様書

+ + + + + + + + + + + + +
仕様書
{{SpecName('ESDraft', '#sec-relational-operators', 'Relational operators')}}
+ +

ブラウザーの互換性

+ +

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

+ +

関連情報

+ + -- cgit v1.2.3-54-g00ecf