What's in a Name?
Make a List
How'd They Do That?
Numbers Don't Lie
Feeling Loopy
100

A base 2 number system

What is binary?

100
Index number for the first item in a list.

What is 0?

100

Code used to track a list in the debug console.

What is console.log?

100

The number computer scientists start counting at.

What is 0?

100

Occurs when the ending condition will never evaluate to true.

What is an infinite loop?

200

A base ten number system.

What are decimal numbers?

200

Removes the element in the list at the given index.

What is removeItem?

200

Reduce the list down to a single element.

What is reduce?

200

for(var i=0; i<3; i++){

What is a For Loop?

200

This code uses a Boolean condition to repeatedly run a block of code.

What is a While Loop?

300

A collection of organized items.

What is a list?

300

Adds an element to the end of a list.

What is appendItem?

300

Create a subset of elements from the original list.

What is filter?

300

var temps = [ 77, 85, 89, 65 ];

What is a list?

300

The code condenses the parts of a while loop into a shorter statement.

What is a For Loop?

400

An individual value in a list.

What is an element?

400

Inserts an element into a list at the given index.

What is insertItem?

400
Code used to access each element in a list.

What is list[i]?

400

This code refers to the last item in a list.

What is list.length?

400

The process of accessing each item in a list one at a time.

What is a traversal?

500

A common method for referencing the elements in a list.

What is an index?

500

This code gives the length of a string.

What is myString.length?

500
Code used to check if a loop should continue to run.

What is a Boolean expression?

500

This code increases the variable that is being checked.

What is steps++?

500

A repetitive portion of an algorithm.

What is iteration?