DEV Community

Kamrul Haider Chowdhury
Kamrul Haider Chowdhury

Posted on

Learning typescript for the first time - 2

Why typescript?

Let's first talk about JavaScript. JavaScript is an awesome object-oriented language that dynamically set the types of your variables. It is so helpful when you are writing less code. but nowadays JavaScript is so popular that it is being used both frontend and backend. For a large-scale app, you need to write a huge amount of code. So In JS, the most common error that we face is a type error. Typescript solves this issue for us.

Typescript set the variable types statically. it will check your code in the code editor and help you to solve it fast. typescript simplifies JavaScript code for you. with typescript we can make a huge improvement over plain JavaScript script. It gives us more productivity. It will save us time because it will stop execution immediately after getting an error. TypeScript can help us to avoid painful bugs that developers commonly run into when writing JavaScript by type-checking the code.

Top comments (0)