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

let x = 5;
document.getElementById("demo").innerHTML = x ** 2;

To me, x ** 2, appears to be like x2. Presumably x ** 3 would be x3.