The Different Types of Typescript
· ☕ 4 min read
With ‘type’ in its name, Typescript lives up to its reputation of being a typed language. But, what exactly are the supported types?
At a high-level we can classify types as built-in (basic & special ) and additional types including user-defined types.
Built-in Types (Basic) Similar to Javascript implicit types, we have number, string, boolean to form the three core built-in types.