“Exposant en JavaScript” Réponses codées

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

Exposant en 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

** Exponentiation JavaScript

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

Réponses similaires à “Exposant en JavaScript”

Questions similaires à “Exposant en JavaScript”

Plus de réponses similaires à “Exposant en JavaScript” dans JavaScript

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code