Boolean
The second simplest primitive of the language; its value can only be true or false.
It is useful for representing data that is limited to being in one of two states.
- Knot
- TypeScript
knotconst trueValue = true;const falseValue = false;
knotconst trueValue = true;const falseValue = false;
tsxconst trueValue = true;const falseValue = false;
tsxconst trueValue = true;const falseValue = false;