diff options
Diffstat (limited to 'files/es/web/javascript/referencia/objetos_globales/infinity/index.html')
-rw-r--r-- | files/es/web/javascript/referencia/objetos_globales/infinity/index.html | 96 |
1 files changed, 0 insertions, 96 deletions
diff --git a/files/es/web/javascript/referencia/objetos_globales/infinity/index.html b/files/es/web/javascript/referencia/objetos_globales/infinity/index.html deleted file mode 100644 index 2a0a716eeb..0000000000 --- a/files/es/web/javascript/referencia/objetos_globales/infinity/index.html +++ /dev/null @@ -1,96 +0,0 @@ ---- -title: Infinity -slug: Web/JavaScript/Referencia/Objetos_globales/Infinity -tags: - - JavaScript -translation_of: Web/JavaScript/Reference/Global_Objects/Infinity ---- -<div> - {{jsSidebar("Objects")}}</div> -<h2 id="Resumen">Resumen</h2> -<p>La propiedad global <strong><code>Infinity </code></strong>es un valor numérico que representa el infinito.</p> -<p>{{js_property_attributes(0,0,0)}}</p> -<h2 id="Sintaxis">Sintaxis</h2> -<pre class="brush: js">Infinity</pre> -<h2 id="Description" name="Description" style="padding-top: 0px; padding-left: 0px; border: 0px; line-height: 24px;">Description</h2> -<p><code>Infinity </code>es una del objeto global, es decir, esta es una variable de alcance global.</p> -<p>El valor inicial de <code>Infinity</code> es {{jsxref("Number.POSITIVE_INFINITY")}}. El valor de <code>Infinity</code> (infinito positivo) es mayor que cualquier otro numero incluido el mismo. Este valor se comporta matematicamente como el infinito matemático; por ejemplo, cualquier numero multiplicado por <code>Infinity</code> da como resultado <code>Infinity</code>, y cualquier numero divido por <code>Infinity</code> da como resultado cero.</p> -<p>Para la especificación ECMAScript 5, <code>Infinity </code>es de solo lectura (implementado en JavaScript 1.8.5 / Firefox 4).</p> -<h2 id="Especificaciones">Especificaciones</h2> -<table class="standard-table" style=""> - <tbody> - <tr> - <th scope="col" style="font-style: inherit;">Especificación</th> - <th scope="col" style="font-style: inherit;">Estado</th> - <th scope="col" style="font-style: inherit;">Comentario</th> - </tr> - <tr> - <td>ECMAScript 1ra edición.</td> - <td>Estándar</td> - <td>Definición inicial. Implementada en JavaScript 1.3</td> - </tr> - <tr> - <td>{{SpecName('ES5.1', '#sec-15.1.1.2', 'Infinity')}}</td> - <td>{{Spec2('ES5.1')}}</td> - <td> </td> - </tr> - <tr> - <td>{{SpecName('ES6', '#sec-value-properties-of-the-global-object-infinity', 'Infinity')}}</td> - <td>{{Spec2('ES6')}}</td> - <td> </td> - </tr> - </tbody> -</table> -<h2 id="Compatibilidad_con_navegadores" style="margin-bottom: 20px; padding-top: 0px; padding-left: 0px; font-size: 28px; border: 0px; line-height: 28px;">Compatibilidad con navegadores</h2> -<p style="padding-top: 0px; padding-left: 0px; border: 0px;">{{ CompatibilityTable() }}</p> -<div id="compat-desktop" style="padding-top: 0px; padding-left: 0px; border: 0px;"> - <table class="compat-table" style=""> - <tbody> - <tr> - <th style="font-style: inherit; line-height: 16px;">Característica</th> - <th style="font-style: inherit; line-height: 16px;">Chrome</th> - <th style="font-style: inherit; line-height: 16px;">Firefox (Gecko)</th> - <th style="font-style: inherit; line-height: 16px;">Internet Explorer</th> - <th style="font-style: inherit; line-height: 16px;">Opera</th> - <th style="font-style: inherit; line-height: 16px;">Safari</th> - </tr> - <tr> - <td>Soporte básico</td> - <td>(Si)</td> - <td>(Si)</td> - <td>(Si)</td> - <td>(Si)</td> - <td>(Si)</td> - </tr> - </tbody> - </table> -</div> -<div id="compat-mobile" style="padding-top: 0px; padding-left: 0px; border: 0px;"> - <table class="compat-table" style=""> - <tbody> - <tr> - <th style="font-style: inherit; line-height: 16px;">Característica</th> - <th style="font-style: inherit; line-height: 16px;">Android</th> - <th style="font-style: inherit; line-height: 16px;">Chrome for Android</th> - <th style="font-style: inherit; line-height: 16px;">Firefox Mobile (Gecko)</th> - <th style="font-style: inherit; line-height: 16px;">IE Mobile</th> - <th style="font-style: inherit; line-height: 16px;">Opera Mobile</th> - <th style="font-style: inherit; line-height: 16px;">Safari Mobile</th> - </tr> - <tr> - <td>Soporte básico</td> - <td>(Si)</td> - <td>(Si)</td> - <td>(Si)</td> - <td>(Si)</td> - <td>(Si)</td> - <td>(Si)</td> - </tr> - </tbody> - </table> -</div> -<h2 id="See_also" name="See_also" style="margin-bottom: 20px; padding-top: 0px; padding-left: 0px; font-size: 28px; border: 0px; line-height: 28px;">Ver también</h2> -<ul> - <li>{{jsxref("Number.NEGATIVE_INFINITY")}}</li> - <li>{{jsxref("Number.POSITIVE_INFINITY")}}</li> -</ul> |