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

Smartphone icons created by Freepik - Flaticon

JavaScript Numbers

If you add a number and a numeric string, the result will be a concatenated string:

let x = 10;
let y = "20";
let z = x + y;
document.getElementById("demo").innerHTML = z;