let number = 2;
let exponent = 3;
//using the exponent operator
console.log( number ** exponent);
// using the Math library
console.log( Math.pow(number, exponent);
// these will both output 8
//Exponentiation
2**2 = 4
it's is like 2^2 = 4
3**9 = 19683
it's is like 3^9 = 19683
we can say power of 2 is 2
we can say power of 3 is 9
Math.pow(base, exposant);
// if (math.pow(4,3)
//do (4*4*4)
//output:64