Concatenating when Logging without the Plus Sign
You can use the comma in place of the plus sign when concatenation is needed.
// Give the Comma a Try When Logging
var stuff = "my stuff";
// the comma acts like the plus to concatenate your strings
console.log("some text:", stuff);