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

Smartphone icons created by Freepik - Flaticon

JavaScript Arithmetic

The += Operator

var x = 10;
x += 5;
document.getElementById("demo").innerHTML = x;