TypeScript
Programming
NPM
Functions
Types
100

The JSON file that determines the rules for compiling typescript.

What is the .tsconfig file?

100

The construct used to store a value in our program for later use.

What is a variable?

100

NPM is an acronym for this. 

What is the Node Package Manager?

100

The variables passed into a function.

What are the parameters?

100

This is a type that stores sentences or a series of characters.

What is a String?

200

TypeScript is a ________ of JavaScript.

What is "superset"?

200

The isolation of code into its own calculation.

What is a function?

200

The JSON file that identifies the current directory as an NPM package.

What is package.json?

200

The statement required to send information back out of a function when it's done processing.

What is the return statement?
200

This is a type that stores a list of values.

What is an array, or tuple?

300

The process of converting TypeScript to JavaScript.

What is compiling (or transpiling, compilation, tranpilation)?

300

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?

300

This script command does not require the "run" keyword.

What is "start"?

300

function jeopardyExample(): string {

}

In this example, the text following the ":" and preceding the "{".

What is the return type?

300

This is a type that holds numerical values.

What is a (number, integer, int, long, or float)?

400

The command to start a TypeScript compilation in the current directory.

What is "tsc"?

400

The program used to change the current directory.

What is the "cd" command?

400

In the package.json scripts, this is the designation for a script that will force it to run before another script.

What is "pre"?

400

The function used to output text to the command line.

What is console.log?

400

This is a type that holds key/value pairs, which may also be key/value pairs.

What is an object?

500

The current latest stable version of TypeScript.

What is "4.0.2"?

500

The program used to list the contents of a directory in Linux,

What is the "ls" command?

500

The command to make the current folder an NPM Package

What is "npm init"?
500

The function used to raise a number by an exponent.

What is Math.pow?

500

This type can explicitly contain decimal values.

What is a float?