0Pricing
TypeScript Academy · Lesson

Your First Look at TypeScript

Write and run your first TypeScript code.

Time to peek

Let's look at real TypeScript. Don't worry, it looks just like JavaScript with tiny extras. 😄

A simple value

Here we store a name. The ": string" is just a label saying "this holds text".

let name: string = "Alex";
console.log(name);

All lessons in this course

  1. What is TypeScript?
  2. Why TypeScript Beats Plain JS
  3. Your First Look at TypeScript
← Back to TypeScript Academy