Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

Math.pow()

概要

baseexponent 乗した値、つまり、baseexponent の値を返します。

構文

Math.pow(base,
exponent) 

引数

base
底となる数。
exponents
base を累乗する指数。

詳細

powMath オブジェクトの静的なメソッドなので、自ら生成した Math オブジェクトのメソッドとしてではなく、常に、Math.pow() として使用するようにしてください。

例:Math.pow の使用

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

x が 7 で y が 2 の場合、raisePower は 49 (7 の 2 乗) を返します。

関連情報

ドキュメントのタグと貢献者

 このページの貢献者: teoli, ethertank, Potappo
 最終更新者: teoli,