TypeScript 1 🔷 Introduction to TypeScript
TypeScript is a typed superset of JavaScript that compiles to plain JavaScript. Every valid JavaScript program is already a valid TypeScript program — TypeScript just adds a layer of static types on top, checks them at build time, and strips them away before the code ever runs in a browser or Node. It was created…