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

Smartphone icons created by Freepik - Flaticon

JS Math.pow()

Math.pow(x,y) returns the value of x to the power of y:

document.getElementById("demo").innerHTML = Math.pow(8,2);

Math.pow(8,2) is the same as 82 or 8 x 8.