DEV Community

Cover image for Typescript as a beginner
Sogo Jonathan
Sogo Jonathan

Posted on

Typescript as a beginner

Typescript is a programming language that's very similar to JavaScript, but with some added features. It's often described as "JavaScript with types". Essentially, Typescript is a "superset" of JavaScript, meaning that it's a language that contains all of the features of JavaScript and then some.

It allows you catch errors earlier in the development process and avoid bugs in your code as it can check the types of variables and make sure that they're used correctly right as type the lines of codes immediately.

Typescript was also developed primarily to be able to write large-scale applications, makes your work clean and well defined.

This is just an introductory read, hope you enjoy it...

Top comments (0)