This site is mobile accessible. Press the "Tap Here" button to use a smaller font-size.
Smartphone icons created by Freepik - Flaticon
The + operator concatenates (adds) strings.
let text1 = "John"; let text2 = "Doe"; let text3 = text1 + " " + text2; document.getElementById("demo").innerHTML = text3;