DEV Community

Cover image for Understanding Types in TypeScript
Bhavesh Yadav
Bhavesh Yadav

Posted on

Understanding Types in TypeScript

Welcome back to our TypeScript journey! In our previous blog post on Getting Started with TypeScript, we covered the basics of TypeScript and how it can help us write more robust and maintainable code. Now, we'll dive deeper into the language and explore its type system. TypeScript's type system allows us to catch errors at compile-time, write more self-documenting code, and improve our development experience overall.

In this blog post, we'll cover the different types available in TypeScript, how to use them effectively, and how to leverage generics to write more reusable code. So, let's get started!

Interface VS Type

In TypeScript, an interface is a way to define a contract for an object. It specifies the properties and methods that an object should have, but doesn't provide an implementation. Interfaces are often used to enforce a certain structure or shape of an object, and can be extended or implemented by other interfaces or classes.

On the other hand, a type in TypeScript is a way to define a custom type alias. It allows us to create a new name for a type, which can be useful for making our code more readable and self-documenting. Types can be used to define simple types like strings or numbers, or more complex types like unions or intersections.

Now, let's look at the differences between interfaces and types in TypeScript:

  1. Implementation: Interfaces don't provide an implementation, while types are used to define custom type aliases.

  2. Object shape: Interfaces are used to define the shape of an object, while types can be used to define any type, including primitives, unions, and intersections.

  3. Extensibility: Interfaces can be extended or implemented by other interfaces or classes, while types cannot be extended.

  4. Naming conventions: Interfaces are typically named with a capital "I" prefix, while types are named with a capital letter.

In general, interfaces are more commonly used for defining object shapes and contracts, while types are more commonly used for defining custom type aliases. However, both interfaces and types can be useful in different scenarios, and it's up to the developer to choose the appropriate one for their use case.

Basic Types

TypeScript provides several basic types that can be used to define variables:

  • number: represents numeric values, including integers and floating-point numbers.
  • string: represents textual data.
  • boolean: represents true/false values.
  • null and undefined: represent null and undefined values, respectively.
  • void: represents the absence of a value.
  • any: represents any type, allowing for dynamic typing.

Here's an example of how to define variables with these basic types:

let num: number = 42;
let str: string = "Hello, world!";
let bool: boolean = true;
let nul: null = null;
let undef: undefined = undefined;
let nothing: void = undefined;
let anyType: any = "I can be anything!";
Enter fullscreen mode Exit fullscreen mode

Arrays

Arrays are a common data structure in programming, and TypeScript provides a way to define arrays with specific types:

let numArray: number[] = [1, 2, 3];
let strArray: string[] = ["foo", "bar", "baz"];
let anyArray: any[] = [1, "two", true];
Enter fullscreen mode Exit fullscreen mode

Objects

Objects are another common data structure, and TypeScript allows developers to define the types of object properties:

interface Person {
  name: string;
  age: number;
  email?: string; // optional property
}

let person: Person = {
  name: "Alice",
  age: 30,
  email: "alice@example.com"
};
Enter fullscreen mode Exit fullscreen mode

In this example, we define an interface Person that has three properties: name, age, and email (which is optional). We then create an object of type Person and assign it to the person variable.

Functions

Functions can also be typed in TypeScript, specifying the types of their parameters and return values:

function add(x: number, y: number): number {
  return x + y;
}

let result: number = add(1, 2);
Enter fullscreen mode Exit fullscreen mode

In this example, we define a function add that takes two parameters of type number and returns a value of type number. We then call the function and assign its return value to the result variable.

Generics

Generics are a powerful feature of TypeScript that allow for the creation of reusable code that can work with a variety of types. They are similar to templates in C++ or Java.

Here's an example of a generic function that takes an array of any type and returns the first element:

function first<T>(arr: T[]): T {
  return arr[0];
}

let numArray: number[] = [1, 2, 3];
let strArray: string[] = ["foo", "bar", "baz"];

let firstNum: number = first(numArray);
let firstStr: string = first(strArray);
Enter fullscreen mode Exit fullscreen mode

In this example, we define a generic function first that takes an array of type T and returns a value of type T. We then call the function with two different arrays (numArray and strArray) and assign the return values to variables of the appropriate types (firstNum and firstStr).

Generics can also be used with interfaces and classes to create reusable code that works with a variety of types.

Conclusion

In this blog, we've explored the different types available in TypeScript and how to use them effectively. We've also looked at the powerful feature of generics, which allow for the creation of reusable code that can work with a variety of types. By using types effectively in your TypeScript code, you can catch errors at compile-time and write more robust and maintainable code.

Top comments (0)