Summary
TypeScript adds types to JavaScript and compiles to plain JavaScript.
Slug
typescript
Tier
core
Extensions
.ts, .tsx
Hello World
const msg: string = 'Hello, World!';
console.log(msg);
Tip: you can expand this page later with official docs + trusted references.