What is a string?
a letter, word, number, etc. with quotes around it
What is the string concatenation operator?
+
What is the difference when it comes to using single quotes or double quotes ( ‘ ‘ or “ “ )?
nothing, yet you need to use the same type on both ends and if you have quotes in the string you need to use the opposite type for surrounding it
How do you escape quotation characters?
\
What is type coercion?
JavaScript can convert data types behind the scenes to complete an operation.