diff options
| author | Florian Merz <me@fiji-flo.de> | 2021-02-11 14:46:50 +0100 |
|---|---|---|
| committer | Florian Merz <me@fiji-flo.de> | 2021-02-11 14:46:50 +0100 |
| commit | a55b575e8089ee6cab7c5c262a7e6db55d0e34d6 (patch) | |
| tree | 5032e6779a402a863654c9d65965073f09ea4182 /files/es/web/javascript/reference/global_objects/math/log2e | |
| parent | 8260a606c143e6b55a467edf017a56bdcd6cba7e (diff) | |
| download | translated-content-a55b575e8089ee6cab7c5c262a7e6db55d0e34d6.tar.gz translated-content-a55b575e8089ee6cab7c5c262a7e6db55d0e34d6.tar.bz2 translated-content-a55b575e8089ee6cab7c5c262a7e6db55d0e34d6.zip | |
unslug es: move
Diffstat (limited to 'files/es/web/javascript/reference/global_objects/math/log2e')
| -rw-r--r-- | files/es/web/javascript/reference/global_objects/math/log2e/index.html | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/files/es/web/javascript/reference/global_objects/math/log2e/index.html b/files/es/web/javascript/reference/global_objects/math/log2e/index.html new file mode 100644 index 0000000000..f9593b4bc6 --- /dev/null +++ b/files/es/web/javascript/reference/global_objects/math/log2e/index.html @@ -0,0 +1,27 @@ +--- +title: Math.LOG2E +slug: Web/JavaScript/Referencia/Objetos_globales/Math/LOG2E +tags: + - JavaScript + - Math + - Property +translation_of: Web/JavaScript/Reference/Global_Objects/Math/LOG2E +--- +<div> + {{JSRef("Objetos_globales", "Math")}}</div> +<h2 id="Summary" name="Summary">Resumen</h2> +<p>El base 2 del logaritmo natural de E (aproximadamente 1.442).</p> +<div> + {{js_property_attributes(0,0,0)}}</div> +<h2 id="Description" name="Description">Descripción</h2> +<p>Porque <code>LOG2E</code> es una propiedad estática de <code>Math</code>, siempre usted lo usa como <code>Math.LOG2E</code>, en lugar de una propedad de un objecto de <code>Math</code> usted creó.</p> +<h2 id="Examples" name="Examples">Ejemplos</h2> +<h3 id="Example:_Using_Math.LOG2E" name="Example:_Using_Math.LOG2E">Ejemplo: Usar <code>Math.LOG2E</code></h3> +<p>La función siguiente devuelve el base 2 del logaritmo natural del <code>E</code>:</p> +<pre class="brush:js">function getLog2e() { + return Math.LOG2E +}</pre> +<h2 id="Ven_También">Ven También</h2> +<ul> + <li>El {{jsxref("Math")}} objeto.</li> +</ul> |
