TypeScript



As a superset of JavaScript in general and JavaScript 6 (a.k.a. ECMAScript 2015 or ES6) in particular, TypeScript programming leads to, compared to JavaScript, a more “formal” and therefore controllable code.

TypeScript supports additional programming constructs (e.g., compilation types like unknown), which are devoted to (static) type checking (TypeScript compiler). The TypeScript transpiler next erases this extra code so that generated JavaScript code is interpretable by Web browsers on the front-end side or middleware like Node.js, Deno, Bun… on the back-end side.

TypeScript in a nutshell
Headlines