Skip to content

Commit

Permalink
Correction in as type operator example (kamranahmedse#5017)
Browse files Browse the repository at this point in the history
  • Loading branch information
KShehzadi committed Jan 11, 2024
1 parent 601d21c commit 5cf7aa3
Showing 1 changed file with 8 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,16 +1,18 @@
# As Type

as is a type assertion in TypeScript that allows you to tell the compiler to treat a value as a specific type, regardless of its inferred type.

For example:
In TypeScript, the as keyword is used for type assertions, allowing you to explicitly inform the compiler about the type of a value when it cannot be inferred automatically. Type assertions are a way to override the default static type-checking behavior and tell the compiler that you know more about the type of a particular expression than it does.

Here's a simple example:

```typescript
let num = 42;
let str = num as string;
let someValue: any = "Hello, TypeScript!";
let strLength: number = (someValue as string).length;

// str is now of type string, even though num is a number
console.log(strLength); // Outputs: 20
```
In this example, someValue is initially of type any, and we use the as operator to assert that it is of type string before accessing its length property. It's important to note that type assertions do not change the underlying runtime representation; they are a compile-time construct used for static type checking in TypeScript.

It's important to note that type assertions do not change the runtime type of a value, and do not cause any type of conversion. They simply provide a way for the programmer to override the type inference performed by the compiler.

- [Type assertions](https://www.typescriptlang.org/docs/handbook/2/everyday-types.html#type-assertions)
- [Type assertions](https://www.typescriptlang.org/docs/handbook/2/everyday-types.html#type-assertions)

0 comments on commit 5cf7aa3

Please sign in to comment.