# TS - Boolean

<figure><img src="https://4062235122-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F7tekcoDYDaKhlNreT5uK%2Fuploads%2FSSnGRpYIxKv5eu9LqJu5%2FTypescript%20Boolean%20Syntax.png?alt=media&#x26;token=7f1277a9-2eb1-4642-b71a-645891667fdd" alt=""><figcaption></figcaption></figure>

`let isPerson : boolean = true;` ရေးထုံးနဲ့ Boolean Type တွေကို သတ်မှတ် လို့ရပါတယ် ။

```typescript
let isPerson: boolean = true;
console.log(isPerson);
```
