JavaScript Reference/Javascript Methods/pow — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
|
(нет различий)
|
Текущая версия на 08:22, 26 мая 2010
"pow()" Example
<html>
<body>
<button onclick="alert(Math.pow(2,2));">POW</button>
</body>
</html>
"pow()" is applied to
+----------------+--------------------------------------------------------------+
| Applied_To |Math |
+----------------+--------------------------------------------------------------+
"pow()" Syntax, Parameters and Note
Note:
Calculate the power.
Syntax:
Math.pow(param1, param2)
Parameters:
param1 Required; the number to use as the base.
param2 Required; the number to use as the exponent.