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 two numbers, the result will be a number:

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