--- title: Truthy slug: Glossary/Truthy tags: - CodingScripting - Glossary - JavaScript - 用語集 translation_of: Glossary/Truthy ---

{{Glossary("JavaScript")}} において、 truthy は {{Glossary("Boolean")}} コンテキストに現れた時に true とみなされる値のことです。 {{Glossary("Falsy", "falsy")}} として定義された値 (つまり、false, 0, -0, 0n, "", null, undefined, NaN) を除くすべての値は truthy です。

{{Glossary("JavaScript")}} は、 Boolean コンテキストでは{{Glossary("Type_Conversion", "型変換")}}を用います。

JavaScript で truthy な値の例です (boolean コンテキストではこれらの値を true と評価し、if ブロックを実行します)。

if (true)
if ({})
if ([])
if (42)
if ("0")
if ("false")
if (new Date())
if (-42)
if (12n)
if (3.14)
if (-3.14)
if (Infinity)
if (-Infinity)

仕様書

仕様書
{{SpecName("ESDraft", "#sec-toboolean", "ToBoolean abstract operation")}}

関連情報

{{QuickLinksWithSubpages("/ja/docs/Glossary")}}