“Exponent in JavaScript” Code-Antworten

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

Exponent in JavaScript

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 
McBurd

** JavaScript -Exponentiation

//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
polyglot orca

Ähnliche Antworten wie “Exponent in JavaScript”

Fragen ähnlich wie “Exponent in JavaScript”

Weitere verwandte Antworten zu “Exponent in JavaScript” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen