Objects are a ________ data type
Complex
What is the first index of an array?
0

What is the proper order for these statements in a for loop: Stop, Update, Start?
Start, Stop, Update
What do we use to iterate through an array?
For loop
Which of the following are used to create Objects and which are used to create Arrays?:
() [] {} <>
{} for Objects
[] for Arrays

Identify the values in this object
"Ben", "Weston", "Instructor"

How would you access "hey" from this array?
array[1];
Correctly place these statements in the for loop: i++, var i = 0; i < 10
for() {}
var i = 0; i < 10; i++
How do we create a stop condition when we do not know the size of the array?
i < array.length
What data type are keys of an Object?
Strings

How would you access "Weston" from this object?
person.hometown or person['hometown']
Arrays use _______ Notation to access individual elements.
Bracket

What values are printed to the console?
0 through 19, counting up by 1s

Fill in the three blank spaces to print out each element of the array
0;
array.length;
array[i];
_____ are used to separate keys and values while _____ are used to separate properties.
colons, commas
Objects are a collection of ______ pairs called ______
Key:Value, Properties
How would you access the last element of any array?
var array = [...]
var lastElement = ???;
array[array.length - 1];

What are the values printed to the console?
50, 40, 30, 20, 10

Which loop will result in adding 10 to each number?
Both
What are the git commands to save your work?
git add .
git commit -m 'asdfghjkl'
git push
Open jsbin.com and create an object called user that has 3 properties: firstName, lastName, and age. It should have 2 different data types.

var grades = [85, 67, 93, 79, 88, 72, 59, 95, 76];
I want to add 5 points to each of these grades. What is the best way to do this? How will you change each element of the array?
Use a for loop, iterate through each index of the array, grades[i] += 5;
Provide an example of an infinite loop / explain how an infinite loop can occur.
An infinite loop occurs when the stop condition can only ever be true.
Create two arrays. One will hold your whole groups first name and the second will hold last name.
Create an loop that will print everyones first and last name WITH A SPACE BETWEEN THE NAMES.

whatIs thisConvention forVariables called?
Camel Case