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

# TS - String

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

`let myName : string = "str value"` ရေးထုံးနဲ့ String Type တွေကို သတ်မှတ် လို့ရပါတယ် ။

```typescript
let myName: string = "Lwin Moe Paing";
console.log("myName = ", myName);
```

&#x20;
