TypeScript
Variables
Reference
Types
Type is an easy way to refer to the different properties and functions that a value has.
A value in JS is anything that we can assign to a variable.
What can we assign to variables
String
Number
Boolean
null
undefined
Object {}
Function
Array
Classes
Types in TS
Primitive Types
number
boolean
void
undefined
null
string
symbol
Object Types
functions
arrays
classes
objects
Type annotations and Type Inference
Type annotations is a code we add to tell TypeScript what type of value a variable will refer to. Type inference: TypeScript tries to figure out what type of value a variable refers to.
Annotations with Variables
Different type annotations
Type inference
If declaration and initialization are done on the same line, TypeScript will figure our the type for us
Last updated
Was this helpful?