Why do we log things to the console?
to check for bugs
What is a method?
function which is a property of an object.
How is a method different from any other function?
The difference is that a method is associated with an object, while a function is not.
How do you remove the last element from an array?
pop()
How do you round a number down to the nearest integer?
math.round()
How do you generate a random number?
math.random()
How do you delete an element from an array?
shift()
How do you append an element to an array?
unshift()
How do you break a string up into an array?
split()
What three-letter acronym should you always include in your Google search about a JavaScript method or CSS property?
MDN