Which of these statements create a string variable?

var name = "";var venue = 'Rick\'s Café';var string;var quote = ""Hello World!" - You";

You're onto it! We create strings with single or double quotes. If we want to use quotes within strings, we can escape them.

Whoops! We create strings with single or double quotes. If we want to use quotes within strings, we can escape them.