“** JavaScript -Exponentiation” Code-Antworten

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 “** JavaScript -Exponentiation”

Fragen ähnlich wie “** JavaScript -Exponentiation”

Weitere verwandte Antworten zu “** JavaScript -Exponentiation” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen