Learn TypeScript in Y Minutes
learnxinyminutes.com·3d
🎯Gradual Typing
Preview
Report Post

Where X=TypeScript

Language:

Get the code: learntypescript.ts

TypeScript is a language that aims at easing development of large scale applications written in JavaScript. TypeScript adds common concepts such as classes, modules, interfaces, generics and (optional) static typing to JavaScript. It is a superset of JavaScript: all JavaScript code is valid TypeScript code so it can be added seamlessly to any project. The TypeScript compiler emits JavaScript.

This article will focus only on TypeScript extra syntax, as opposed to JavaScript.

To test TypeScript’s compiler, head to the Playground where you will be able to type code, have auto co…

Similar Posts

Loading similar posts...