var x = “Hello “;

var y = “World!”;

var y += x;

You can also combine numbers and strings using the + operator with great effect. It doesn’t perform a calculation on the number, but merely turns the number into a string and joins the two strings together. Let’s take a closer look: