> 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-number.md).

# TS - Number

<figure><img src="https://4062235122-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F7tekcoDYDaKhlNreT5uK%2Fuploads%2FKcjF7VsCObDVYvlivnLh%2FTypescript%20Number%20Syntax.png?alt=media&amp;token=64e6be96-e56b-4dde-83a7-13ba06ab518f" alt=""><figcaption></figcaption></figure>

`let year: number = 2024` ရေးထုံးနဲ့ Numbre Type တွေကို သတ်မှတ် လို့ရပါတယ် ။

```typescript
let year: number = 2024;
console.log("year = ", year);
```
