From 33058f2b292b3a581333bdfb21b8f671898c5060 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:40:17 -0500 Subject: initial commit --- .../reference/global_objects/math/pow/index.html | 78 ++++++++++++++++++++++ 1 file changed, 78 insertions(+) create mode 100644 files/zh-cn/web/javascript/reference/global_objects/math/pow/index.html (limited to 'files/zh-cn/web/javascript/reference/global_objects/math/pow/index.html') diff --git a/files/zh-cn/web/javascript/reference/global_objects/math/pow/index.html b/files/zh-cn/web/javascript/reference/global_objects/math/pow/index.html new file mode 100644 index 0000000000..32489252c0 --- /dev/null +++ b/files/zh-cn/web/javascript/reference/global_objects/math/pow/index.html @@ -0,0 +1,78 @@ +--- +title: Math.pow() +slug: Web/JavaScript/Reference/Global_Objects/Math/pow +translation_of: Web/JavaScript/Reference/Global_Objects/Math/pow +--- +
{{JSRef}}
+ +

Math.pow() 函数返回基数(base)的指数(exponent)次幂,即 baseexponent

+ +

{{EmbedInteractiveExample("pages/js/math-pow.html")}}

+ +

语法

+ +
Math.pow(base, exponent) 
+ +

参数

+ +
+
base
+
基数
+
exponent
+
指数
+
+ +

描述

+ +

由于 pow 是 Math 的静态方法,所以应该像这样使用:Math.pow(),而不是作为你创建的 Math 对象的方法。

+ +

示例

+ +

使用 Math.pow

+ +
function raisePower(x,y) {
+   return Math.pow(x,y)
+}
+ +

如果 x 是 2 ,且 y 是 7,则 raisePower 函数返回 128 (2 的 7 次幂)。

+ +

规范

+ + + + + + + + + + + + + + + + + + + + + + + + +
规范版本规范状态注解
ECMAScript 1st Edition. Implemented in JavaScript 1.0StandardInitial definition.
{{SpecName('ES5.1', '#sec-15.8.2.13', 'Math.pow')}}{{Spec2('ES5.1')}}
{{SpecName('ES6', '#sec-math.pow', 'Math.pow')}}{{Spec2('ES6')}}
+ +

浏览器兼容性

+ +

{{Compat("javascript.builtins.Math.pow")}}

+ +

相关链接

+ + -- cgit v1.2.3-54-g00ecf