0
Typescript Vs JavaScript
I am learning JavaScript. And I want to become a web developer. So What is Typescript. ? Is Typescript same as JavaScript? Is it server side programming language ? What can I do with Typescript?
2 Réponses
+ 6
JavaScript is weak-typed.
Type coercion occurs and can be buggy.
TypeScript is the solution to this.
TypeScript tutorial series by The Net Ninja:
https://www.youtube.com/playlist?list=PL4cUxeGkcC9gUgr39Q_yD6v-bSyMwKPUI
+ 4
Allamprabhu Hiremath Typescript is a superset (improvment) to Javascript that adds strongly-typed variables, better classes and interfaces, enums and many more new useful features. Typescript is compiled using typescript compiler that turns typescript code into vanilla JS code so you can write modern code that runs on old browsers.