-
Notifications
You must be signed in to change notification settings - Fork 356
TypeScript FAQ
zallen edited this page May 8, 2019
·
10 revisions
TypeScript extends JavaScript with static typing. It can make code easier to understand and maintain by specifying properties and behavior more explicitly. It also improves the developer experience for consumers of our library through providing typings for other TypeScript projects.
Interfaces, classes, and enums allow you to define custom types that describe data structures and behavior. You can also share properties and behavior between different types via inheritance.
Need to learn TypeScript? Dive into the documentation or the useful links below.