DrSchool Learn coding, fast.
EN AR BN CS DE EL Search

TypeScript: Introduction

Start learning TypeScript with a quick overview and Hello World.

Read time: 1 min • Words: 42
My Progress

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.