DE
JavaScript - Math.pow() Methode - Beispiel
3
points
Math.pow()
ist eine statische Methode, die eine Basis zurückgibt, die auf die Potenz des Exponenten angehoben wird (value^exponent
Operation).
// ONLINE-RUNNER:browser;
// Basis Exponent
console.log( Math.pow( 1 , 2 ) ); // 1
console.log( Math.pow( 2 , 2 ) ); // 4
console.log( Math.pow( 3 , 2 ) ); // 9
console.log( Math.pow( 0 , 3 ) ); // 0
console.log( Math.pow( 0.5, 0.3 ) ); // 0.8122523963562356
console.log( Math.pow( -1 , 4 ) ); // 1
console.log( Math.pow( 0 , -0.4 ) ); // Infinity
console.log( Math.pow( -0.5, -2 ) ); // 4
console.log( Math.pow( -2.0, -2 ) ); // 0.25
console.log( Math.pow( 2.0 , 0.5 ) ); // NaN
1. Dokumentation
Syntax | Math.pow(base, exponent) |
Parameter |
Die Methode verwendet Ganzzahl oder Gleitkommazahlenargumente (primitive Werte).
|
Ergebnis |
|
Beschreibung | pow ist eine statische Methode, die eine Basis zurückgibt, die auf die Potenz von Exponent angehoben ist (value^exponent Operation). |
2. Exponentiationsoperator (**
) - Beispiel
// ONLINE-RUNNER:browser;
console.log( 1 ** 2 ); // 1
console.log( 2 ** 2 ); // 4
console.log( 3 ** 2 ); // 9
console.log( 0 ** 3 ); // 0
console.log( 0.5 ** 0.3 ); // 0.8122523963562356
console.log( (-1) ** 4 ); // 1
console.log( 0 ** -0.4 ); // Infinity
console.log( (-0.5) ** -2 ); // 4
console.log( (-2.0) ** -2 ); // 0.25
console.log( (-2.0) ** 0.5 ); // NaN
Hinweis: Diese Funktion wurde in ES2016 eingeführt.