Boolean
Overview
A Boolean is a data type that represents one of two values: true
or false
.
Key Characteristics
Basic Definition: A Boolean value is either
true
orfalse
. These values are typically the result of comparison operations or logical expressions.Type Conversion: Any value in JavaScript can be converted to a Boolean using the
Boolean()
function or double negation!!
. Examples:
Last updated
Was this helpful?