--- title: Truthy(真值) slug: Glossary/Truthy tags: - Boolean - JavaScript - 布尔值 - 术语 translation_of: Glossary/Truthy ---

在 {{Glossary("JavaScript")}} 中,truthy(真值)指的是在{{Glossary("Boolean", "布尔值")}}上下文中,转换后的值为真的值。所有值都是真值,除非它们被定义为 {{Glossary("Falsy", "假值")}}(即除 false0""nullundefinedNaN 以外皆为真值)。

{{Glossary("JavaScript")}} 在布尔值上下文中使用强制类型转换({{Glossary("Type_Conversion", "coercion")}})。

JavaScript 中的真值示例如下(将被转换为 true,if 后的代码段将被执行):

if (true)
if ({})
if ([])
if (42)
if ("foo")
if (new Date())
if (-42)
if (3.14)
if (-3.14)
if (Infinity)
if (-Infinity)

另见

{{QuickLinksWithSubpages("/zh-CN/docs/Glossary")}}