QP School
QP School
>
Tutorials
>
JavaScript Tutorials
> JavaScript - Exponentiations with variables
Full Version:
JavaScript - Exponentiations with variables
You're currently viewing a stripped down version of our content.
View the full version
with proper formatting.
Qomplainerz
04-04-2023, 07:58 AM
Code:
let a = 3;
let b = 3;
let c = a ** b;
document.getElementById("demo").innerHTML = c;
QP School
>
Tutorials
>
JavaScript Tutorials
> JavaScript - Exponentiations with variables