Q:

exponent javascript

// Use Math.pow(a,b); where a is your value and b is the exponent
var num = Math.pow(4, 2);
//num returns 16
7
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 
5
Math.pow(base, exponent)
4
Math.pow(base, exponent);

Math.pow(2, 4);
// Outputs 16
// The same as going 2^4, 2 to the power of 4
4
Math.pow(base, exposant);
// if (math.pow(4,3)
//do (4*4*4)
//output:64
1
Math.pow(4, 3);
 // Do: (4*4*4)
//output: 64
0
// Use Math.exp(a) to return the exponential of the value passed
var num = Math.exp(1)
0

New to Communities?

Join the community