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.cbrt()

概要

Math.cbrt() 関数は、引数として与えた数の立方根を返します。すなわち、

Math.cbrt(x)=x3=the uniqueysuch thaty3=x\mathtt{Math.cbrt(x)} = \sqrt[3]{x} = \text{the unique} \; y \; \text{such that} \; y^3 = x

構文

Math.cbrt(x)

引数

x
数値。

説明

cbrt()Math の静的なメソッドのため、自ら生成した Math オブジェクトのメソッドとしてではなく、常に、Math.cbrt() として使用してください (Math はコンストラクタではありません)。

Math.cbrt()を使う

Math.cbrt(-1); // -1
Math.cbrt(0);  // 0
Math.cbrt(1);  // 1

Math.cbrt(2);  // 1.2599210498948734

Polyfill

すべての x0x \geq 0に対して、x3=x1/3\sqrt[3]{x} = x^{1/3} が存在し、次の関数でエミュレートできます:

Math.cbrt = Math.cbrt || function(x) {
  var y = Math.pow(Math.abs(x), 1/3);
  return x < 0 ? -y : y;
};

仕様

仕様 ステータス コメント
ECMAScript 2015 (6th Edition, ECMA-262)
Math.cbrt の定義
標準 初回定義。
ECMAScript 2017 Draft (ECMA-262)
Math.cbrt の定義
ドラフト  

ブラウザ実装状況

機能 Chrome Firefox (Gecko) Internet Explorer Opera Safari
基本サポート 38 25 (25) 未サポート 25 7.1
機能 Android Chrome for Android Firefox Mobile (Gecko) IE Mobile Opera Mobile Safari Mobile
基本サポート 未サポート 未サポート 25.0 (25) 未サポート 未サポート 8

関連情報

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

 このページの貢献者: dskmori, shide55
 最終更新者: dskmori,