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

Smartphone icons created by Freepik - Flaticon

JavaScript Variables

The result of adding "John" + " " + "Doe" is:

let x = "John" + " " + "Doe";
document.getElementById("demo").innerHTML = x;