---
title: Boolean Type
---

# Boolean Type

`Boolean` is your basic JavaScript true/false value.
`Boolean` variables are used to indicate whether a condition is true or not, or to represent two states, for example if a light is on or off.

```typescript
let isDone: boolean = false;
let isTurnedOn: boolean = true;
```
