JS Pow
Math.pow(base, exponent);
Math.pow(2, 4);
// Outputs 16
// The same as going 2^4, 2 to the power of 4
Willby
Math.pow(base, exponent);
Math.pow(2, 4);
// Outputs 16
// The same as going 2^4, 2 to the power of 4
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