A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://developer.mozilla.org/es/docs/Web/JavaScript/Reference/Global_Objects/Math/LOG10E below:

Math.LOG10E - JavaScript | MDN

Math.LOG10E

Baseline Widely available

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

Math.LOG10E = log 10 ( e ) ≈ 0.434 \mathtt{\mi{Math.LOG10E}} = \log_10(e) \approx 0.434 Sobrescribir No Numerable No Configurable No 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:

function getLog10e() {
  return Math.LOG10E;
}

getLog10e(); // 0.4342944819032518
Especificaciones Compatibilidad con navegadores Ver tambien

RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4