Skip to content

Latest commit

 

History

History
10 lines (7 loc) · 817 Bytes

typescript.md

File metadata and controls

10 lines (7 loc) · 817 Bytes

TypeScript

TypeScript is a programming language designed to replace JavaScript. It is a typed super-set of JavaScript. This means any valid JavaScript is valid TypeScript. It does more than that though, it adds real classes, types, static typing (it tells you where the error is), and more. It is compiled down to the version of JavaScript you specify, so it can run in browsers.

Resources