beta
Login
đ
TypeScript Basics
1
Introduction to TypeScript
đ
2
Type Annotations
đ
3
Typing Functions
đ
đ
4
Compiling TypeScript
đ
5
Inference
đ
đ
6
Any, void, unknown
đ
đ
Real World TypeScript
7
Arrays and Tuples
8
Types and Interfaces
đ
9
Intersections and Unions
đ
10
Assertions
đ
11
Never
12
Enums
đ
13
Const assertions
đ
14
Type Guards
đ
15
Assertion Functions
đ
16
Function Overloading
Advanced Types
17
Generics
đ
18
Mapped Types and Lookup Types
đ
19
Conditional Types
đ
20
Template Literal Types
21
Utility Types
Classes and OOP
22
Classes in TypeScript
đ
23
Abstract Classes
đ
24
Mixins
25
Decorators
Bonus
26
Nominal Typing
27
Declaration Files
28
Strict Flags
Back
Next lesson
Quiz
#1
A function which returns nothing...
can return
void
only if
return
is missing
can return
undefined
or
void
must return
void
must return
undefined
Send answer
#2
When is using
void
particularly useful?
For callback functions which must not return anything
For callback functions which must return
undefined
For callback functions which don't need to return anything
Send answer
#3
How are
any
and
unknown
similar?
They can both represent every type
You can assign any value to both of them
You can assign any value to
any
, nothing to
unknown
They can store the same values
Both of them must be narrowed in order to use the value
Send answer
#4
The type for a non initialized variable is...
any
unknown
void
undefined
Send answer
Back
Next lesson