Skip to content

Instantly share code, notes, and snippets.

View Toe-Hlaing-Win's full-sized avatar
🎯
Focusing

Toe-Hlaing-Win

🎯
Focusing
  • Yangon
View GitHub Profile
@nasirhafeez
nasirhafeez / freeradius-advanced-use-cases.md
Last active November 5, 2024 10:34
FreeRADIUS Advanced Use Cases
@eimg
eimg / typescript.md
Last active November 12, 2024 18:05
TypeScript - လိုတိုရှင်း

TypeScript - လိုတိုရှင်း

JavaScript ဟာ Dynamic Type Language တစ်ခုပါ။ Data Type တွေကို Language က လိုသလို အလိုအလျှောက် ပြောင်းလဲအလုပ်လုပ်ပေးတဲ့အတွက် ရေးသားသူက Type ကိစ္စ သိပ်ခေါင်းစားနေစရာမလိုဘဲ ရေးစရာရှိတဲ့ကုဒ်တွေကို ခပ်မြန်မြန် ရေးသွားလို့ရပါတယ်။

let value;        // undefined
value = "Alice";  // string
value = 42;       // number
value = true;     // boolean