ID: I202602061927 Status: idea Tags: programming language, Microsoft, JavaScript

Typescript

Typescript is a programming language made by Microsoft. It is a version of JavaScript that has typing so that you can have your IDE do type checking on your code and see if you made any mistakes. Typescript gets transpiled into JavaScript before runtime so that it is able to be run in your browser or with Node.

Typescript has similar types compared to C-Sharp, this includes interfaces and other things.

Typescript doesn’t know floats or intagers, it combines types like these into a number type.


References