> For the complete documentation index, see [llms.txt](https://lwin-moe-paing.gitbook.io/typescript-baby-by-lwin-moe-paing/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://lwin-moe-paing.gitbook.io/typescript-baby-by-lwin-moe-paing/basic-typescript/ts-boolean.md).

# TS - Boolean

<figure><img src="/files/UitSEUNILbLWaqkI9blK" alt=""><figcaption></figcaption></figure>

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

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