Basics of Typescript

Basics of Typescript

Hey, developers in today's blog we are going to learn about the basics of typescript.

This is going a be a series of blogs in which I'm gonna help you learn TypeScript in an easy way!

We are going to cover

  • What is TypeScript?
  • Why should we use it instead of JavaScript?
  • Pros and Cons of TypeScript.

What is TypeScript?

  • TypeScript is the superset of JavaScript.

  • TypeScript can be used to build enterprise-level applications.

  • TypeScript provides:

    • Static Typing

    • Classes

    • Interfaces

    • Unions

      and a ton of amazing things...

Why should you use TS instead of JS?

  • TS will save you from more exceptions and project failures.

    • If we have a function that will add two numbers

    ```javascript function addNums(a, b){

    return a+b;
    

    }

console.log(addNums(10 + '10')) // here the output would be 1010


  As shown in the above example... this code is valid and it will run perfectly but it does not give the expected output. 

  These sort of silly failures are prevented by typescript.

  The code in TS would be

  ```typescript
  function addNums(a:number, b:number){
      return a+b
  }

  console.log(addNums(10 + 10)) // output: 20
  console.log(addNums(10 + '10')) // output: this would give an error (argument of type string isn't assignable to string)
  • If there is a large code-base and there are lots and lots of variables... it is natural to not remember many of them. TS has great integration with the IDE and together they make our coding experience a lot more smooth. There are many benefits like :

    • Hover Support

      hoverIMG

    • Code auto-completion

      • With statically typed languages, the autocomplete is better and faster.
    • Type checking in real-time

      • In JS we can access the property of an object which does not exist and it will just return undefined but in TS it will show an error that the property you are trying to access is not present.
    • Easier Code Factoring

Advantages/Pros of TypeScript

  • Steep learning curve
    • You don't have to learn a whole new language as all those features which you are used to in JS are primarily used in TS also.
  • Spotting bugs is relatively easy
    • According to research 15% of bugs are found at the compile stage
  • Readability
    • The code becomes more self-expressive due to the types.
    • The code speaks for itself which helps a lot when working with big teams.
  • Follows OOP paradigm
    • The concepts of OOPs like classes, inheritance and interfaces can be used in TS.
  • Huge Community
    • As per reports TS was the second most loved language of 2020.
    • There are lots of developers and a great community out there that work on TS and it is also maintained by Microsoft.

Disadvantage/Cons of TypeScript

  • TS has to be compiled as the browsers don't understand it.
  • Long TS codes might take some time to compile.

This was just the basics of typescript and in the next blog I'm gonna explain how to code in typescript (Basic data types, Arrays, Tuples, unions, Interfaces, Types and much more fun stuff!!)

Thank you so much for reading the whole blog and please share your feedback in the comment section.