Typescript Vs JavaScript | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
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?

24th Aug 2020, 1:52 PM
Allamprabhu Hiremath
2 Answers
+ 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
24th Aug 2020, 2:06 PM
Gordon
Gordon - avatar
+ 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.
24th Aug 2020, 3:07 PM
🈂️Toma
🈂️Toma - avatar