pow()
Math对象的函数接受两个数字,并将第一个自变量的值返回第二个自变量的幂。
其语法如下
Math.pow(48, 2);
<html> <head> <title>JavaScript Example</title> </head> <body> <script type="text/javascript"> var result = Math.pow(48, 2); document.write("Result "+result); </script> </body> </html>
输出结果
Result 2304