TypeScript Language Interview Question
Comprehensive source of knowledge for interviews TypeScript Language.
I. Introduction to TypeScript
TypeScript is an open source project developed by Microsoft, it can be considered an advanced version of Javascript by adding static typing options and object-oriented classes that are not available in Javascript. It can run on any browser, operating system or platform. Anything that can use JavaScript code can also use TypeScript.
II. Why use TypeScript?
- Easy to develop large projects: With the use of the latest techniques and object-oriented programming, TypeScript helps us develop large projects easily.
- Many Frameworks to choose from: Currently, Javascript Frameworks have gradually encouraged the use of TypeScript for development, such as Angular and NestJs.
- Support for the latest version of Javascript features: TypeScript always ensures the full use of the latest Javascript techniques, for example, the current version is ECMAScript 2015 (ES6).
- Open source: TypeScript is an open source code so you can use it completely without any fees, and it is also supported by the community.
- TypeScript is JavaScript: The nature of TypeScript is to compile and create javascript code, so you can run it anywhere as long as there is support for Javascript compilation. Additionally, you can use Javascript syntax mixed into TypeScript, which makes it easier for programmers to approach TypeScript.
