TypeScript: Introduction
Start learning TypeScript with a quick overview and Hello World.
TypeScript — Introduction
Overview
TypeScript adds types to JavaScript and compiles to plain JavaScript.
Hello World
const msg: string = 'Hello, World!';
console.log(msg);
What you'll learn
- How to run TypeScript
- Basic syntax style
- Next steps (lessons & references)
Next
Open the Syntax & Cheat Sheet page for this language.