scrimba
Introduction to TypeScript
TypeScript: Multiple Types
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

TypeScript: Multiple Types
AboutCommentsNotes
TypeScript: Multiple Types
Expand for more info
index.ts
run
preview
console
let example1: boolean = true;

let example2: number = 35;

let example3: string = 'Hello world';
Console
index.html
-1:02