aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/javascript/reference/global_objects/math/pow/index.html
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
committerPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
commit33058f2b292b3a581333bdfb21b8f671898c5060 (patch)
tree51c3e392513ec574331b2d3f85c394445ea803c6 /files/ja/web/javascript/reference/global_objects/math/pow/index.html
parent8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff)
downloadtranslated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip
initial commit
Diffstat (limited to 'files/ja/web/javascript/reference/global_objects/math/pow/index.html')
-rw-r--r--files/ja/web/javascript/reference/global_objects/math/pow/index.html97
1 files changed, 97 insertions, 0 deletions
diff --git a/files/ja/web/javascript/reference/global_objects/math/pow/index.html b/files/ja/web/javascript/reference/global_objects/math/pow/index.html
new file mode 100644
index 0000000000..ad8bd26f3c
--- /dev/null
+++ b/files/ja/web/javascript/reference/global_objects/math/pow/index.html
@@ -0,0 +1,97 @@
+---
+title: Math.pow()
+slug: Web/JavaScript/Reference/Global_Objects/Math/pow
+tags:
+ - JavaScript
+ - Math
+ - Method
+ - Reference
+translation_of: Web/JavaScript/Reference/Global_Objects/Math/pow
+---
+<div>{{JSRef}}</div>
+
+<p><strong><code>Math.pow()</code></strong> 関数は <code><var>base</var></code> を <code><var>exponent</var></code> 乗した値、つまり、<code>base<sup>exponent</sup></code> の値を返します。</p>
+
+<div>{{EmbedInteractiveExample("pages/js/math-pow.html")}}</div>
+
+<div class="hidden">このデモのソースファイルは GitHub リポジトリに格納されています。デモプロジェクトに協力してくださる場合は、 <a href="https://github.com/mdn/interactive-examples">https://github.com/mdn/interactive-examples</a> をクローンしてプルリクエストを送信してください。</div>
+
+<h2 id="Syntax" name="Syntax">構文</h2>
+
+<pre class="syntaxbox notranslate">Math.pow(<var>base</var>, <var>exponent</var>)</pre>
+
+<h3 id="Parameters" name="Parameters">引数</h3>
+
+<dl>
+ <dt><code><var>base</var></code></dt>
+ <dd>底となる数です。</dd>
+ <dt><code><var>exponent</var></code></dt>
+ <dd><code><var>base</var></code> を累乗する指数です。</dd>
+</dl>
+
+<h3 id="Return_value" name="Return_value">返値</h3>
+
+<p>指定された低を指定された指数だけ累乗したものを表す数値です。</p>
+
+<h2 id="Description" name="Description">解説</h2>
+
+<p><strong><code>Math.pow()</code></strong> 関数は <code><var>base</var></code> の <code><var>exponent</var></code> 乗、すなわち <code>base<sup>exponent</sup></code> を返します。 <code><var>base</var></code> と <code><var>exponent</var></code> は10進数の数値です。</p>
+
+<p><code>pow()</code> は <code>Math</code> の静的メソッドなので、常に <code>Math.pow()</code> として使用し、自分で <code>Math</code> オブジェクトを生成してそのメソッドとして使用しないでください。 (<code>Math</code> にはコンストラクターがありません)。</p>
+
+<h2 id="Examples" name="Examples">例</h2>
+
+<h3 id="Using_Math.pow" name="Using_Math.pow">Math.pow() の使用</h3>
+
+<pre class="brush: js notranslate">// 単純
+Math.pow(7, 2); // 49
+Math.pow(7, 3); // 343
+Math.pow(2, 10); // 1024
+// 小数のべき乗
+Math.pow(4, 0.5); // 2 (4 の平方根)
+Math.pow(8, 1/3); // 2 (8 の立方根)
+Math.pow(2, 0.5); // 1.4142135623730951 (2 の平方根)
+Math.pow(2, 1/3); // 1.2599210498948732 (2 の立方根)
+// 負の数のべき乗
+Math.pow(7, -2); // 0.02040816326530612 (1/49)
+Math.pow(8, -1/3); // 0.5
+// 負の数の底
+Math.pow(-7, 2); // 49 (2乗は正の数)
+Math.pow(-7, 3); // -343 (3乗は負の数)
+Math.pow(-7, 0.5); // NaN (負の数には実数の平方根がない)
+// due to "even" and "odd" roots laying close to each other,
+// and limits in the floating number precision,
+// negative bases with fractional exponents always return NaN
+Math.pow(-7, 1/3); // NaN
+</pre>
+
+<h2 id="Specifications" name="Specifications">仕様書</h2>
+
+<table class="standard-table">
+ <thead>
+ <tr>
+ <th scope="col">仕様書</th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr>
+ <td>{{SpecName('ESDraft', '#sec-math.pow', 'Math.pow')}}</td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2>
+
+<div class="hidden">このページの互換性一覧表は構造化データから生成されています。データに協力していただけるのであれば、 <a class="external" href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> をチェックアウトしてプルリクエストを送信してください。</div>
+
+<p>{{Compat("javascript.builtins.Math.pow")}}</p>
+
+<h2 id="See_also" name="See_also">関連情報</h2>
+
+<ul>
+ <li>{{jsxref("Math.cbrt()")}}</li>
+ <li>{{jsxref("Math.exp()")}}</li>
+ <li>{{jsxref("Math.log()")}}</li>
+ <li>{{jsxref("Math.sqrt()")}}</li>
+ <li><a href="/ja/docs/Web/JavaScript/Reference/Operators/Exponentiation">べき乗演算子</a></li>
+</ul>