TypeScript
Learn about type-checking using TypeScript, which takes JavaScript one step further by adding a powerful type system.
We'll cover the following...
What is TypeScript?
TypeScript was created by Microsoft and is a typed superset of JavaScript, meaning that it cannot be directly executed in the browser but instead has to be compiled into real JavaScript first. Nevertheless, valid JavaScript is always valid ...
TypeScript