JavaScript中的Math.pow()函数

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