TypeScript is a syntactic superset of JavaScript which adds _____?_____ typing.
A. dynamic
B. static
static
TypeScript adds syntax on top of JavaScript allowing developers to add ____?____.
types
“Syntactic Superset” means that TypeScript shares the same base syntax as JavaScript but adds ____?____ to it.
A. dynamic typing
B. static typing
static typing
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
compile time, before
TypeScript ___?___ code into JavaScript
A. compiles
B. transpiles
C. interprets
D. translates
transpiles