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.log1p()
retorna el logaritme natural (base e
) de 1 + un nombre, és a dir
Sintaxi
Math.log1p(x)
Paràmetres
x
- Un nombre.
Descripció
Si el valor de x
és menor que -1, el valor retornat sempre serà NaN
.
Com que log1p()
és un mètode estàtic de Math
, sempre s'utilitza com Math.log1p()
en comptes de com un mètode d'un objecte Math
creat (Math
no és un constructor).
Exemples
Utilitzar Math.log1p()
Math.log1p(1); // 0.6931471805599453 Math.log1p(0); // 0 Math.log1p(-1); // -Infinit Math.log1p(-2); // NaN
Polyfill
Aquesta funció pot ser emulada mitjançant la funció següent:
Math.log1p = Math.log1p || function(x) { return Math.log(1 + x); };
Especificacions
Especificació | Estat | Comentaris |
---|---|---|
ECMAScript 2015 (6th Edition, ECMA-262) The definition of 'Math.log1p' 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 |