ttothes Flashcards
1
Q
TypeScript is a syntactic superset of JavaScript which adds _____?_____ typing.
A. dynamic
B. static
A
static
2
Q
TypeScript adds syntax on top of JavaScript allowing developers to add ____?____.
A
types
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
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
5
Q
TypeScript ___?___ code into JavaScript
A. compiles
B. transpiles
C. interprets
D. translates
A
transpiles