PL
JavaScript - Math.pow() - przykład metody z dokumentacją
6 points
Math.pow()
jest metodą statyczną, która zwraca podstawę podniesioną do potęgi wykładnika (operacja podstawa ^ wykładnik
).
xxxxxxxxxx
1
// podstawa wykładnik
2
console.log( Math.pow( 1 , 2 ) ); // 1
3
console.log( Math.pow( 2 , 2 ) ); // 4
4
console.log( Math.pow( 3 , 2 ) ); // 9
5
6
console.log( Math.pow( 0 , 3 ) ); // 0
7
console.log( Math.pow( 0.5, 0.3 ) ); // 0.8122523963562356
8
console.log( Math.pow( -1 , 4 ) ); // 1
9
10
console.log( Math.pow( 0 , -0.4 ) ); // Inieskończoność
11
console.log( Math.pow( -0.5, -2 ) ); // 4
12
console.log( Math.pow( -2.0, -2 ) ); // 0.25
13
console.log( Math.pow( 2.0 , 0.5 ) ); // NaN
Składnia | Math.pow(podstawa, wykładnik) |
Parametry |
Metoda przyjmuje argumenty liczb całkowitych lub zmiennoprzecinkowych (wartości pierwotne).
|
Wynik |
|
Opis | pow jest metodą statyczną, która zwraca podstawę podniesioną do potęgi wykładnika (operacja podstawa ^ wykładnik). |
xxxxxxxxxx
1
console.log( 1 ** 2 ); // 1
2
console.log( 2 ** 2 ); // 4
3
console.log( 3 ** 2 ); // 9
4
5
console.log( 0 ** 3 ); // 0
6
console.log( 0.5 ** 0.3 ); // 0.8122523963562356
7
console.log( (-1) ** 4 ); // 1
8
9
console.log( 0 ** -0.4 ); // Infinity
10
console.log( (-0.5) ** -2 ); // 4
11
console.log( (-2.0) ** -2 ); // 0.25
12
console.log( (-2.0) ** 0.5 ); // NaN
Uwaga: operator potęgowania został wprowadzony w ES2016.