TypeScript Setup and Data Types
Get introduced to basic TypeScript data types, and find out which ones we will be using during this course.
We'll cover the following...
Overview
TypeScript is a strictly typed language. It ensures that the data types of variables, return value of functions, class methods, members, and so on are consistent over the lifecycle of our application.
...