blob: 247f76e0cb5e84317139fad9f5d2d50fb7880e68 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
|
---
title: 大なり (>)
slug: Web/JavaScript/Reference/Operators/Greater_than
tags:
- JavaScript
- Language feature
- Operator
- Reference
translation_of: Web/JavaScript/Reference/Operators/Greater_than
---
<div>{{jsSidebar("Operators")}}</div>
<p>大なり演算子 (<code>></code>) は、左辺のオペランドが右辺のオペランドより大きい場合は <code>true</code> を返し、それ以外の場合は <code>false</code> を返します。</p>
<div>{{EmbedInteractiveExample("pages/js/expressions-greater-than.html")}}</div>
<h2 id="構文">構文</h2>
<pre class="syntaxbox notranslate">x > y</pre>
<h2 id="解説">解説</h2>
<p>オペランドは、 <a class="external external-icon" href="https://tc39.es/ecma262/#sec-abstract-relational-comparison" rel="noopener">抽象関係比較</a> アルゴリズムを使用して比較されます。このアルゴリズムの概要については、 <a href="/en-US/docs/Web/JavaScript/Reference/Operators/Less_than">小なり</a> 演算子のドキュメントを参照して下さい。</p>
<h2 id="例">例</h2>
<h3 id="文字列と文字列の比較">文字列と文字列の比較</h3>
<pre class="brush: js notranslate">console.log("a" > "b"); // false
console.log("a" > "a"); // false
console.log("a" > "3"); // true</pre>
<h3 id="文字列と数値の比較">文字列と数値の比較</h3>
<pre class="brush: js notranslate">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</pre>
<h3 id="数値と数値の比較">数値と数値の比較</h3>
<pre class="brush: js notranslate">console.log(5 > 3); // true
console.log(3 > 3); // false
console.log(3 > 5); // false</pre>
<h3 id="数値と_BigInt_の比較">数値と BigInt の比較</h3>
<pre class="brush: js notranslate">console.log(5n > 3); // true
console.log(3 > 5n); // false</pre>
<h3 id="ブール値、_null_、_undefined_、_NaN_の比較">ブール値、 null 、 undefined 、 NaN の比較</h3>
<pre class="brush: js notranslate">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</pre>
<h2 id="仕様">仕様</h2>
<table class="standard-table">
<tbody>
<tr>
<th scope="col">仕様</th>
</tr>
<tr>
<td>{{SpecName('ESDraft', '#sec-relational-operators', 'Relational operators')}}</td>
</tr>
</tbody>
</table>
<h2 id="ブラウザーの互換性">ブラウザーの互換性</h2>
<p>{{Compat("javascript.operators.greater_than")}}</p>
<h2 id="関連項目">関連項目</h2>
<ul>
<li><a href="/en-US/docs/Web/JavaScript/Reference/Operators/Greater_than_or_equal">Greater than or equal operator</a></li>
<li><a href="/en-US/docs/Web/JavaScript/Reference/Operators/Less_than">Less than operator</a></li>
<li><a href="/en-US/docs/Web/JavaScript/Reference/Operators/Less_than_or_equal">Less than or equal operator</a></li>
</ul>
|