Math.LOG10E

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.

La propiedad Math.LOG10E representa el logaritmo base 10 de e, el cual es aproximadamente 0.434:

Math.LOG10E=log10(e)0.434\mathtt{\mi{Math.LOG10E}} = \log_10(e) \approx 0.434
Atributos de la propiedad Math.LOG10E
SobrescribirNo
NumerableNo
ConfigurableNo

Descripción

Debido a que LOG10E es una propiedad estatica del módulo Math, se debe de invocar siempre como Math.LOG10E, en lugar de invocarla como una propiedad de algun objeto Math que hayas creado ( Math no es un constructor ).

Ejemplos

Utilizando Math.LOG10E

La siguiente funcion regresa el logaritmo base 10 de e:

js
function getLog10e() {
  return Math.LOG10E;
}

getLog10e(); // 0.4342944819032518

Especificaciones

Specification
ECMAScript Language Specification
# sec-math.log10e

Compatibilidad con navegadores

BCD tables only load in the browser

Ver tambien