TypeScript object Type

Summary: in this tutorial, you’ll learn about the TypeScript object type and how to write more accurate object type declarations.

Introduction to TypeScript object type

The TypeScript object type represents all values that are not in primitive types.

The following are primitive types in TypeScript:

  • number
  • bigint
  • string
  • boolean
  • null
  • undefined
  • symbol

The following shows how to declare a variable that holds an object:

let employee: object;

employee = {
    firstName: 'John',
    lastName: 'Doe',
    age: 25,
    jobTitle: 'Web Developer'
};

console.log(employee);Code language: JavaScript (javascript)

Output:

{
  firstName: 'John',       
  lastName: 'Doe',
  age: 25,
  jobTitle: 'Web Developer'
}Code language: CSS (css)

If you reassign a primitive value to the employee object, you’ll get an error :

employee = "Jane";Code language: JavaScript (javascript)

Error:

error TS2322: Type '"Jane"' is not assignable to type 'object'.Code language: JavaScript (javascript)

The employee object is an object type with a fixed list of properties. If you attempt to access a property that doesn’t exist on the employee object, you’ll get an error:

console.log(employee.hireDate);Code language: CSS (css)

Error:

error TS2339: Property 'hireDate' does not exist on type 'object'.Code language: JavaScript (javascript)

Note that the above statement works perfectly fine in JavaScript and returns undefined instead.

To explicitly specify properties of the employee object, you first use the following syntax to declare the employee object:

let employee: {
    firstName: string;
    lastName: string;
    age: number;
    jobTitle: string;
};Code language: CSS (css)

And then you assign the employee object to a literal object with the described properties:

employee = {
    firstName: 'John',
    lastName: 'Doe',
    age: 25,
    jobTitle: 'Web Developer'
};Code language: JavaScript (javascript)

Or you can combine both syntaxes in the same statement like this:

let employee: {
    firstName: string;
    lastName: string;
    age: number;
    jobTitle: string;
} = {
    firstName: 'John',
    lastName: 'Doe',
    age: 25,
    jobTitle: 'Web Developer'
};Code language: JavaScript (javascript)

object vs. Object

TypeScript has another type called Object with the letter O in uppercase. It’s important to understand the differences between them.

The object type represents all non-primitive values while the Object type describes the functionality of all objects.

For example, the Object type has the toString() and valueOf() methods that can be accessible by any object.

The empty type {}

TypeScript has another type called empty type denoted by {} , which is quite similar to the object type.

The empty type {} describes an object that has no property on its own. If you try to access a property on such object, TypeScript will issue a compile-time error:

let vacant: {};
vacant.firstName = 'John';Code language: JavaScript (javascript)

Error:

error TS2339: Property 'firstName' does not exist on type '{}'.Code language: JavaScript (javascript)

But you can access all properties and methods declared on the Object type, which is available on the object via prototype chain:

let vacant: {} = {};

console.log(vacant.toString());Code language: JavaScript (javascript)

Output:

[object Object]Code language: JSON / JSON with Comments (json)

Summary

  • The TypeScript object type represents any value that is not a primitive value.
  • The Object type, however, describes functionality that is available on all objects.
  • The empty type {} refers to an object that has no property on its own.
Was this tutorial helpful ?