ttothes Flashcards

1
Q

TypeScript is a syntactic superset of JavaScript which adds _____?_____ typing.
A. dynamic
B. static

A

static

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

TypeScript adds syntax on top of JavaScript allowing developers to add ____?____.

A

types

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

“Syntactic Superset” means that TypeScript shares the same base syntax as JavaScript but adds ____?____ to it.
A. dynamic typing
B. static typing

A

static typing

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

TypeScript uses ____?____ type checking, which means that it checks specified types match ____?____ running the code.
A. runtime, before
B. compile time, while
C. compile time, before
D. runtime, while

A

compile time, before

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

TypeScript ___?___ code into JavaScript
A. compiles
B. transpiles
C. interprets
D. translates

A

transpiles

How well did you know this?
1
Not at all
2
3
4
5
Perfectly