TypeScript
What is TypeScript
JavaScript vs TypeScript
Variables
var foo = "Hello"; // string
var bar = false; // false
var bam = 123; // number
// can reassign type
foo = bar; // foo is now a booleanArrays
Types in Functions
Inference
Classes
Class Constructors
Class Constructor - Public params
Interfaces
ES6 Modules
Var, Let, Const?
Arrow Functions
Template Strings
Generics
Generics with Types
TypeScript Transpilation
Summary
Last updated