fix: output length of string (#5227)

pull/5288/head
Reyes Rondón 8 months ago committed by GitHub
parent 9d4aae10b5
commit 44d3724880
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      src/data/roadmaps/typescript/content/101-typescript-types/115-type-assertions/101-as-type.md

@ -9,7 +9,7 @@ Here's a simple example:
let someValue: any = "Hello, TypeScript!";
let strLength: number = (someValue as string).length;
console.log(strLength); // Outputs: 20
console.log(strLength); // Outputs: 18
```
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.

Loading…
Cancel
Save