The JSON file that determines the rules for compiling typescript.
What is the .tsconfig file?
The construct used to store a value in our program for later use.
What is a variable?
NPM is an acronym for this.
What is the Node Package Manager?
The variables passed into a function.
What are the parameters?
This is a type that stores sentences or a series of characters.
What is a String?
TypeScript is a ________ of JavaScript.
What is "superset"?
The isolation of code into its own calculation.
What is a function?
The JSON file that identifies the current directory as an NPM package.
What is package.json?
The statement required to send information back out of a function when it's done processing.
This is a type that stores a list of values.
What is an array, or tuple?
The process of converting TypeScript to JavaScript.
What is compiling (or transpiling, compilation, tranpilation)?
A process or function that can be run repeatedly which will, with the same input, always return the exact same result without side effects.
What is immutable?
This script command does not require the "run" keyword.
What is "start"?
function jeopardyExample(): string {
}
In this example, the text following the ":" and preceding the "{".
What is the return type?
This is a type that holds numerical values.
What is a (number, integer, int, long, or float)?
The command to start a TypeScript compilation in the current directory.
What is "tsc"?
The program used to change the current directory.
What is the "cd" command?
In the package.json scripts, this is the designation for a script that will force it to run before another script.
What is "pre"?
The function used to output text to the command line.
What is console.log?
This is a type that holds key/value pairs, which may also be key/value pairs.
What is an object?
The current latest stable version of TypeScript.
What is "4.0.2"?
The program used to list the contents of a directory in Linux,
What is the "ls" command?
The command to make the current folder an NPM Package
The function used to raise a number by an exponent.
What is Math.pow?
This type can explicitly contain decimal values.
What is a float?