This loop is good at doing something an exact number of times.
What is a for loop?
Text. Surrounded in quotes.
What is a string?
Functions are of this data type.
What is an object?
This HTTP verb is used to replace existing information with new information.
What is "PUT?"
An example of a relational database.
What is Postgres?
This loop is good at doing something as long as a condition is met.
What is a while loop?
A whole number.
What is an integer?
They go in the parentheses of a function definition.
What are parameters?
This HTTP verb is used to modify existing information.
What is "PATCH?"
A table field that corresponds to the id field from another table.
What is a foreign key?
This statement dictates whether a section of code will run or not.
What is an if statement?
Something that's only true or false.
What is a boolean?
Functions that yield a value utilize this keyword in their definitions.
What is return?
HTML stands for this.
What is Hypertext Markup Language?
It combines data from multiple tables into one table.
What is a join?
This special loop allows us to look at everything in a key/value dictionary.
What is a for-in loop?
This datatype is a good way to keep a collection ordered.
What is an array?
These functions can only ever be utilized as callbacks.
What are anonymous functions?
HTTP stands for this.
What is Hypertext Transfer Protocol?
A schema within a schema is used for building this.
What is an embedded subdocument?
This is what we call special words in a language that you can't use for things like variable names, like "new."
What is a keyword?
OR
What are reserved words?
This datatype would be great to use if you need to store the information in from a phone book.
What is an Object?
OR
What is a dictionary? (you'll learn about these soon)
'world' in the function invocation greeting('world')
What is an argument?
It travels over the network from the client to the server.
What is a request?
Row is to document, as table is to ____________.
What is a collection?
A special keyword objects use to refer to themselves in JavaScript.
What is "this?"
"foo", "bar", and "baz" are common names for these types of variables.
What are metasyntactic variables? (variable names that show the name itself isn't special)
A function that takes another function as an argument.
What is a higher order function?
It travels over the network from the server to the client.
What is a response?
This SQL query will return the all data in the 'name' and 'grade' columns from a 'students' table.
SELECT name, grade FROM students;