What is JavaScript ?

What is TypeScript ?

TypeScript is a language that is a superset of JavaScript: JS syntax is therefore legal TS. Syntax refers to the way we write text to form a program.

TypeScript checks a program for errors before execution, and does so based on the kinds of values, it’s a static type checker.

TypeScript doesn’t consider any JavaScript code to be an error because of its syntax. This means you can take any working JavaScript code and put it in a TypeScript file without worrying about exactly how it is written.

1. Types <here>

2. Type Assertions <here>

3. Variable declaration <here>

4. Function Type Expressions <here>