Tutorial — Strings

// A reference variable, named str, set to Hello, Lola!...
var  str = "Hello, Lola!";
// Same thing, only explicitly creating the object...
var  str = new String("Hello, Lola!");

// ...