This site is mobile accessible. Press the "Tap Here" button to use a smaller font-size.

Smartphone icons created by Freepik - Flaticon

JavaScript String Operators

The += Operator

The assignment operator += can concatenate strings.

let text1 = "What a very ";
text1 += "nice day";
document.getElementById("demo").innerHTML = text1;