skip to content →
ts-quiz
— ~/loading.ts
tsc --watch
● loading…
TS
home.ts
TS
levels.ts
MD
learn.md
TS
playground.ts
NEW
// tsc --watch · type-checking modules…
await
load
(
"loading.ts"
)
// streaming server components
◇ tsc 6.0.3 · compiling…
UTF-8
◇ loading…
ts-quiz
—
~/learn/typescript
● 0 errors
TS
JS
PY
DE ▾
TS
home.ts
TS
levels.ts
MD
learn.md
TS
playground.ts
TS
challenges.ts
NEW
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/**
* Werde fit in TypeScript.
* 5 Levels · 125 Fragen · React + TS.
*/
type
Level
=
|
"basic"
|
"medium"
|
"advanced"
|
"functional"
|
"react"
;
const
start
= (
level
:
Level
) => {
return
quiz
(
level
);
};
// wähle ein Level —>
start
(
"medium"
);
▸ 25 Fragen · ~12 min
EXPLORER · TYPE LEVEL
"basic"
Interfaces, any/never, Generics
25q
"medium"
Utility Types, Narrowing
25q
"advanced"
Conditional, Mapped, Modifier
25q
"functional"
HOF, Currying, Monaden
25q
"react"
Hooks, Props, Context, Generics
25q
DEIN FORTSCHRITT
0
/ 125 beantwortet · beste Serie
0
▶ run start("medium")
⟳ Schwachstellen üben
↑ export
↓ import
✓ tsc 6.0.3
UTF-8
◇ inferiert: medium