📄️ Syntax and Variables
TypeScript, developed by Microsoft, is a superset of JavaScript that primarily provides optional static typing, classes, and interfaces. One of the big benefits is to enable IDEs to provide a richer environment for spotting common errors as you type the code. In this article, we'll be taking an introductory look at TypeScript's syntax and how to use variables.
📄️ Data Types in Typescript
Introduction to Data Types in TypeScript
📄️ Type Annotations
Type Annotations are a fundamental part of TypeScript. They provide a way to enforce certain types on the variables, so that type related errors can be caught at compile time, rather than runtime. This feature greatly improves the quality of your code and makes it more understandable.
📄️ Functions in Typescript
Introduction to Functions in TypeScript
📄️ Object-Oriented Programming in Typescript
Introduction