I need a bigger closet
Where are you going?
Feeling Loopy
Code This
Were you Listening?
100

two things a variable can hold

What are a string and a number?

100

an individual value in a list

What is an element?

100

used to simplify repetitive code

What is a while loop?

100

code used to create a variable

What is var?

100

the process of finding and fixing problems in code

What is debugging?

200

a container used to store a value

What is a variable?

200
a common method for referencing the elements in a list using numbers

What is an index?

200

a loop that never stops running

What is an infinite loop?

200

the shortened version of steps = steps + 1

What is Steps ++? 

or

What is i++?

200

the first index in a list

What is 0?

300

an ordered collection of elements

What is a list?

300

removes the element in the given list at the given index

What is removeItem?

300

a repetitive part of an algorithm which repeats a specified number of times

What is an iteration?

300

in order to be a traversal, a loop must have this code

What is list.length?

300

reduce the list down to a single element

What is reduce?

400

how many elements a list contains

What is list length?

400

inserts an element into a list at the given index

What is insertItem?

400

Loop that combines a variable, boolean and step counter into a shorter sentence

What is a For loop?

400

used to print out important information

What is console.log?

400

create a subset of elements from the original list

What is filter?

500

write the command to create a new list

What is var myList = [1,2,3]?

500

adds an element to the end of a list

What is appendItem?

500

the process of accessing each item in a list one at a time

What is a traversal?

500
write the 3 parts of a traversal

What is var i = 0; i <list.length; i++?

500

these allow us to name and program with large collections of information while ignoring low level details

What is a data abstraction?

M
e
n
u