From 33058f2b292b3a581333bdfb21b8f671898c5060 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:40:17 -0500 Subject: initial commit --- .../reference/operators/greater_than/index.html | 100 +++++++++++++++++++++ 1 file changed, 100 insertions(+) create mode 100644 files/ja/web/javascript/reference/operators/greater_than/index.html (limited to 'files/ja/web/javascript/reference/operators/greater_than') diff --git a/files/ja/web/javascript/reference/operators/greater_than/index.html b/files/ja/web/javascript/reference/operators/greater_than/index.html new file mode 100644 index 0000000000..247f76e0cb --- /dev/null +++ b/files/ja/web/javascript/reference/operators/greater_than/index.html @@ -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")}}

+ +

関連項目

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