Deep Dive into TypeScript Type Assertions: as const, as [type], and as any

Alireza Hamid
3 min readOct 17, 2023

TypeScript has gained significant traction in the developer community due to its strong static typing system, which augments JavaScript by offering better tooling, error-checking, and IDE support. Among TypeScript’s many features is the concept of type assertions, allowing developers to override inferred types in certain situations.

In this guide, we’ll explore three common TypeScript type assertions:

  1. as const
  2. as [type]
  3. as any

1. as const

The as const assertion is used to indicate that an object or array should be considered read-only and its values should not be modified. It can also be used to create a type that represents the exact value of a primitive.

let arr = [10, 20, 30] as const;
let obj = {name: "John", age: 25} as const;

// Error: Cannot assign to 'name' because it is a read-only property.
obj.name = "Doe";

// Error: Cannot assign to '0' because it is a read-only property.
arr[0] = 15;

This is particularly useful for defining constants or ensuring that the shape and values of objects remain immutable.

2. as [type]

When you want to assert that a particular value is of a specific type, even if TypeScript’s type inference thinks otherwise, you can use as [type]. This is handy in cases where you're confident about the type of a value, but TypeScript is unable to infer it accurately.

interface User {
name: string;
age: number;
}

let data: any = {
name: "Alice",
age: 28
};

let user: User = data as User;

Note: Overusing this feature can be harmful. Use it wisely and make sure that you’re genuinely certain about the type assertions you’re making.

3. as any

TypeScript is strict, but there may be times when you intentionally want to opt out of type checking for a specific value or expression. This is where as any comes into play. By asserting a value as any, you're telling TypeScript to let you manage the type and trust that you know what you're doing.

let value: unknown = "hello world";

// Error: Object is of type 'unknown'.
let length: number = value.length;

// Works, but use with caution.
let lengthAny: number = (value as any).length;

Caution: Overusing as any defeats the purpose of using TypeScript in the first place. It's a powerful escape hatch, but it should be used judiciously.

Conclusion

TypeScript’s type assertion mechanism offers developers a way to provide hints to the compiler about the type of a value, allowing for more flexible and fine-grained control over type checking. While powerful, it’s essential to use these features judiciously to ensure you’re still benefiting from TypeScript’s strong typing system.

Remember:

  • Use as const for immutable values.
  • Use as [type] when you're certain about the type.
  • Use as any sparingly as an escape hatch from the type system.

Happy TypeScript coding!

--

--

Alireza Hamid

JavaScript Lover | Self-taught developer | Coffee person