Boolean Type
The Boolean type has two literal values: true and false. These values are not numeric values.
true is not equal to 1, and false is not equal to 0. true and false are case-sensitive.
The following code creates two boolean type variables:
<!DOCTYPE html>
<html>
<head>
<title>Boolean Example</title>
<script type="text/javascript">
var isOK = true;
document.writeln(isOK); //true
var isNotOK = false;
document.writeln(isNotOK); //true
</script>
</head>
<body>
</body>
</html>
Home
JavaScript Book
Language Basics
JavaScript Book
Language Basics
Data Types:
- JavaScript Data Types
- typeof Operator
- The Undefined Type
- null Type
- null vs undefined
- Boolean Type
- Boolean() casting function
- The Literials of Number Type
- Octal Integer
- Hexadecimal
- Floating-Point Values
- Value range
- NaN
- Number Conversions:Number(), parseInt() and parseFloat()
- Number() function
- parseInt()
- parseFloat()
- The String Type
- String Literals and Escapes
- Get the String Length
- Converting to a String with toString() method
- Convert Number to String with radix
- Convert to String with String() casting function