A base 2 number system
What is binary?
What is 0?
Code used to track a list in the debug console.
What is console.log?
The number computer scientists start counting at.
What is 0?
Occurs when the ending condition will never evaluate to true.
What is an infinite loop?
A base ten number system.
What are decimal numbers?
Removes the element in the list at the given index.
What is removeItem?
Reduce the list down to a single element.
What is reduce?
for(var i=0; i<3; i++){
What is a For Loop?
This code uses a Boolean condition to repeatedly run a block of code.
What is a While Loop?
A collection of organized items.
What is a list?
Adds an element to the end of a list.
What is appendItem?
Create a subset of elements from the original list.
What is filter?
var temps = [ 77, 85, 89, 65 ];
What is a list?
The code condenses the parts of a while loop into a shorter statement.
What is a For Loop?
An individual value in a list.
What is an element?
Inserts an element into a list at the given index.
What is insertItem?
What is list[i]?
This code refers to the last item in a list.
What is list.length?
The process of accessing each item in a list one at a time.
What is a traversal?
A common method for referencing the elements in a list.
What is an index?
This code gives the length of a string.
What is myString.length?
What is a Boolean expression?
This code increases the variable that is being checked.
What is steps++?
A repetitive portion of an algorithm.
What is iteration?