Web / Typescript interview questions
What is typescript?
TypeScript is an open-source programming language developed and maintained by Microsoft. It is a strict syntactical superset of JavaScript and adds optional static typing to the language.
Using types is completely optional. Typescript compiles/transpiles to regular JS. Typescript can be used for Front End as well as the backend with Node.JS. Types from 3rd party libraries can be added with type definitions.
More Related questions...