--- title: Math.LOG2E slug: Web/JavaScript/Referencia/Objetos_globales/Math/LOG2E tags: - JavaScript - Math - Property translation_of: Web/JavaScript/Reference/Global_Objects/Math/LOG2E ---
El base 2 del logaritmo natural de E (aproximadamente 1.442).
Porque LOG2E
es una propiedad estática de Math
, siempre usted lo usa como Math.LOG2E
, en lugar de una propedad de un objecto de Math
usted creó.
Math.LOG2E
La función siguiente devuelve el base 2 del logaritmo natural del E
:
function getLog2e() { return Math.LOG2E }