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
—
js-basic/01.js
● 0 errors
TS
JS
PY
ES ▾
JS
home.js
JS
quiz.js
●
js-basic
·
1
/5
[salir]
let
a
=
1
;
const
b
=
2
;
a
=
3
;
b
=
4
;
console.
log
(a, b);
What happens when this code runs?
A
Prints 3 4
B
TypeError: Assignment to constant variable
C
Prints 1 2
D
SyntaxError
✓ es2024
UTF-8