Fix typo (#27540)
This commit is contained in:
@ -4,7 +4,7 @@ title: Any Type
|
||||
|
||||
# Any Type
|
||||
|
||||
The Any type instructs Typescript to suspend type checking for the specified variables. Useful when working with dynamic content for which you don't know the type, and for transitioning your codebase for Javascript to Typescript in pieces. You can use Javascript's implicit typing with variables declared with a type of Any.
|
||||
The Any type instructs Typescript to suspend type checking for the specified variables. Useful when working with dynamic content for which you don't know the type, and for transitioning your codebase from Javascript to Typescript in pieces. You can use Javascript's implicit typing with variables declared with a type of Any.
|
||||
|
||||
```typescript
|
||||
let notSure: any = 4;
|
||||
|
Reference in New Issue
Block a user