This is a new technology, part of the ECMAScript 2015 (ES6) standard.
This technology's specification has been finalized, but check the compatibility table for usage and implementation status in various browsers.
La funció Math.cbrt()
retorna la rel cúbica d'un nombre, és a dir
Sintaxi
Math.cbrt(x)
Paràmetres
x
- Un nombre.
Descripció
Degut a que cbrt()
és un mètode estàtic de Math
, sempre s'utilitza com a Math.cbrt()
, en comptes de com a mètode d'una instància de Math
(Math
no és un constructor).
Exemples
Utilitzar Math.cbrt()
Math.cbrt(-1); // -1 Math.cbrt(0); // 0 Math.cbrt(1); // 1 Math.cbrt(2); // 1.2599210498948734
Polyfill
Per a tot , tenim que , podem llavors emular aquest comportament amb la funció següent:
Math.cbrt = Math.cbrt || function(x) { var y = Math.pow(Math.abs(x), 1/3); return x < 0 ? -y : y; };
Especificacions
Especificació | Estat | Comentaris |
---|---|---|
ECMAScript 2015 (6th Edition, ECMA-262) The definition of 'Math.cbrt' in that specification. |
Standard | Definició inicial. |
Compatibilitat amb navegadors
Característica | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
Suport bàsic | 38 | 25 (25) | Not supported | 25 | 7.1 |
Característica | Android | Chrome for Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|
Suport bàsic | Not supported | Not supported | 25.0 (25) | Not supported | Not supported | 8 |