blob: c684188b517b1621f9ec95821dd6186464f13168 (
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
|
---
title: 小なり (<)
slug: Web/JavaScript/Reference/Operators/Less_than
tags:
- JavaScript
- Language feature
- Operator
- Reference
translation_of: Web/JavaScript/Reference/Operators/Less_than
---
<div>{{jsSidebar("Operators")}}</div>
<p>小なり演算子 (<code><</code>) は、左辺のオペランドが右辺のオペランドより小さい場合は <code>true</code> を返し、それ以外の場合は <code>false</code> を返します。</p>
<div>{{EmbedInteractiveExample("pages/js/expressions-less-than.html")}}</div>
<h2 id="構文">構文</h2>
<pre class="syntaxbox notranslate"> x < y</pre>
<h2 id="説明">説明</h2>
<p>オペランドは、以下に大まかに要約されている<a href="https://tc39.es/ecma262/#sec-abstract-relational-comparison">抽象関係比較</a>アルゴリズムを使用して比較されます:</p>
<ul>
<li>最初に、オブジェクトは <code><a href="/en-US/docs/Web/JavaScript/Reference/Global_Objects/Symbol/toPrimitive">Symbol.ToPrimitive</a></code> を使用してプリミティブに変換されます。</li>
<li>両方の値が文字列である場合、それらに含まれる Unicode コードポイントの値に基づいて、文字列として比較されます。</li>
<li>それ以外の場合、 JavaScript は非数値型を数値に変換しようとします:
<ul>
<li>ブール値 <code>true</code> および <code>false</code> は、それぞれ 1 および 0 に変換されます。</li>
<li><code>null</code> は 0 に変換されます。</li>
<li><code>undefined</code> は <code>NaN</code> に変換されます。</li>
<li>文字列は、含まれている値に基づいて変換され、数値が含まれていない場合は <code>NaN</code> として変換されます。</li>
</ul>
</li>
<li>いずれかの値が <code><a href="/en-US/docs/Web/JavaScript/Reference/Global_Objects/NaN">NaN</a></code> の場合、演算子は <code>false</code> を返します。</li>
<li>それ以外の場合、値は数値として比較されます。</li>
</ul>
<h2 id="例">例</h2>
<h3 id="文字列と文字列の比較">文字列と文字列の比較</h3>
<pre class="brush: js notranslate">console.log("a" < "b"); // true
console.log("a" < "a"); // false
console.log("a" < "3"); // false</pre>
<h3 id="文字列と数値の比較">文字列と数値の比較</h3>
<pre class="brush: js notranslate">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</pre>
<h3 id="数値と数値の比較">数値と数値の比較</h3>
<pre class="brush: js notranslate">console.log(5 < 3); // false
console.log(3 < 3); // false
console.log(3 < 5); // true</pre>
<h3 id="数値と_BigInt_の比較">数値と BigInt の比較</h3>
<pre class="brush: js notranslate">console.log(5n < 3); // false
console.log(3 < 5n); // true</pre>
<h3 id="ブール値_null_undefined_NaN_の比較">ブール値, null, undefined, NaN の比較</h3>
<pre class="brush: js notranslate">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</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.less_than")}}</p>
<h2 id="関連項目">関連項目</h2>
<ul>
<li><a href="/en-US/docs/Web/JavaScript/Reference/Operators/Greater_than">Greater than operator</a></li>
<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_or_equal">Less than or equal operator</a></li>
</ul>
|