🟦 TypeScript Introduction

TypeScript is a typed superset of JavaScript that compiles to clean, readable JavaScript — adding strong typing and powerful tooling.

📥 Installing TypeScript

Install TypeScript globally via npm:

🖼️ Setup Screens

Download Node.js Install TypeScript globally Verify tsc version in terminal

📝 Your First TypeScript Program

Output will appear here...
💡 Tip: TypeScript files use the .ts extension. Use tsc filename.ts to compile to JavaScript, and run with node filename.js.