DEV Community

Cover image for Quick Guide to Typescript - Part 2
Anuradha Aggarwal
Anuradha Aggarwal

Posted on • Originally published at anuradha.hashnode.dev

Quick Guide to Typescript - Part 2

In the previous blog, we discuss some cool features of typescript. Let's continue our journey with typescript.

📌 DOM Interactions

We can use typescript to interact with the DOM. Working with DOM in typescript is as similar as in javascript. We can still use the same query methods, event listeners & we can still access the same properties of the DOM element. But there are a few key differences to be aware of.

Typescript automatically contains special types for every DOM element.
Let's look at the example:

Screenshot from 2021-12-05 20-54-06.png

Screenshot from 2021-12-05 20-56-58.png

In the above example, typescript assigns special types to the variable based on the DOM element it signifies. This means whenever we use buttonTag variable, typescript knows all of the properties and methods associated with that type.

But what if we access the element using className or ID???

Screenshot from 2021-12-06 00-23-37.png

Now in this case, when we hover over the variable it says it is of type Element and do not point out to any specific HTML Element because the class can be applied to any different element in the HTML page, so typescript is not able to recognize its exact type.

So for this, we can use something known as Type Assertions.

📌 Type Assertions

Type assertion allows you to set the type of a value and tell the compiler not to infer it.

So in our case, we can use type assertions using the keyword as to indicate a more specific type:

const header = document.querySelector('.mainHeader') as HTMLDivElement;
Enter fullscreen mode Exit fullscreen mode

Now instead of storing it as Element type, it uses HTMLDivElement type.

  • Type assertions are removed by the compiler and won’t affect the runtime behavior of your code.

There is one more method to use Type Assertions using angle-bracket syntax:

const header = <HTMLDivElement>document.querySelector('.mainHeader');
Enter fullscreen mode Exit fullscreen mode

📌 Tuples

A tuple type is another sort of Array type that knows exactly how many elements it contains, and exactly which types it contains at specific positions.

Tuple is another built-in type that is a little bit like an array but with one major difference. In tuple, the types of data in each position are fixed once it's been initialized.

Let's dive into an example for a better understanding that how tuple is different from Array:

In Arrays:

let data = ['javascript', 100];

data[0] = 20;    //Correct
data[1] = 'html';   //Correct

data[0] = true;  //Error: Type 'boolean' is not assignable to type 'string | number'.
Enter fullscreen mode Exit fullscreen mode

As you can see in the above code snippet, data variable can have a mixed type of string | number. And we could reset the first position from type string to number. Which is OK in the case of Arrays. Any position in the above array can be of type string or number.

In Tuples:

//declare what type we expect to be in each position
let data : [string, number];

data[0] = 'javascript';  //Correct
data[1] = 100;  //Correct

data[0] = 20 //Error: Type 'number' is not assignable to type 'string'.

data[2] = 30; //Error: Tuple type '[string, number]' of length '2' has no element at index '2'.
Enter fullscreen mode Exit fullscreen mode

In tuples, once we defined a certain position being a certain type then we cannot change that type in that position.

📌 Wrap Up!!

That's all for this article. We'll explore more new features of typescript in the next post.
Thank you for your time!! Let's connect to learn and grow together.

LinkedIn Twitter Instagram

Buy-me-a-coffee

Top comments (0)