aboutsummaryrefslogtreecommitdiff
path: root/files/es/web/javascript/referencia/funciones/arguments/length/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/es/web/javascript/referencia/funciones/arguments/length/index.html')
-rw-r--r--files/es/web/javascript/referencia/funciones/arguments/length/index.html131
1 files changed, 0 insertions, 131 deletions
diff --git a/files/es/web/javascript/referencia/funciones/arguments/length/index.html b/files/es/web/javascript/referencia/funciones/arguments/length/index.html
deleted file mode 100644
index b1d7698194..0000000000
--- a/files/es/web/javascript/referencia/funciones/arguments/length/index.html
+++ /dev/null
@@ -1,131 +0,0 @@
----
-title: arguments.length
-slug: Web/JavaScript/Referencia/Funciones/arguments/length
-tags:
- - Funciones
- - JavaScript
- - Propiedades
- - argumentos
-translation_of: Web/JavaScript/Reference/Functions/arguments/length
----
-<div>{{jsSidebar("Functions")}}</div>
-
-<p>La propiedad <strong><code>arguments.length</code></strong> contiene el número de argumentos pasados a una función.</p>
-
-<h2 id="Sintaxis">Sintaxis</h2>
-
-<pre class="syntaxbox">arguments.length</pre>
-
-<h2 id="Descripción">Descripción</h2>
-
-<p>La propiedad arguments.length devuelve el número total de argumentos pasados a una función. Esto puede ser más o menos que el número de parametros definidos. (Véase {{jsxref("Function.length")}}).</p>
-
-<h2 id="Ejemplos">Ejemplos</h2>
-
-<h3 id="Usando_arguments.length">Usando <code>arguments.length</code></h3>
-
-<p>En este ejemplo definimos una función que puede sumar dos o más números.</p>
-
-<pre class="brush: js">function adder(base /*, n2, ... */) {
- base = Number(base);
- for (var i = 1; i &lt; arguments.length; i++) {
- base += Number(arguments[i]);
- }
- return base;
-}
-</pre>
-
-<div class="note">
-<p>Tenga en cuenta la diferencia entre {{jsxref("Function.length")}} y arguments.length</p>
-</div>
-
-<h2 id="Especificaciones">Especificaciones</h2>
-
-<table class="standard-table">
- <tbody>
- <tr>
- <th scope="col">Especificación</th>
- <th scope="col">Estado</th>
- <th scope="col">Comentario</th>
- </tr>
- <tr>
- <td>{{SpecName('ES1')}}</td>
- <td>{{Spec2('ES1')}}</td>
- <td>Definición inicial. Implementado en JavaScript 1.1</td>
- </tr>
- <tr>
- <td>{{SpecName('ES5.1', '#sec-10.6', 'Arguments Object')}}</td>
- <td>{{Spec2('ES5.1')}}</td>
- <td> </td>
- </tr>
- <tr>
- <td>{{SpecName('ES6', '#sec-arguments-exotic-objects', 'Arguments Exotic Objects')}}</td>
- <td>{{Spec2('ES6')}}</td>
- <td> </td>
- </tr>
- <tr>
- <td>{{SpecName('ESDraft', '#sec-arguments-exotic-objects', 'Arguments Exotic Objects')}}</td>
- <td>{{Spec2('ESDraft')}}</td>
- <td> </td>
- </tr>
- </tbody>
-</table>
-
-<h2 id="Compatibilidad_con_los_navegadores">Compatibilidad con los navegadores</h2>
-
-<p>{{CompatibilityTable}}</p>
-
-<div id="compat-desktop">
-<table class="compat-table">
- <tbody>
- <tr>
- <th>Feature</th>
- <th>Chrome</th>
- <th>Firefox (Gecko)</th>
- <th>Internet Explorer</th>
- <th>Opera</th>
- <th>Safari</th>
- </tr>
- <tr>
- <td>Basic support</td>
- <td>{{CompatVersionUnknown}}</td>
- <td>{{CompatVersionUnknown}}</td>
- <td>{{CompatVersionUnknown}}</td>
- <td>{{CompatVersionUnknown}}</td>
- <td>{{CompatVersionUnknown}}</td>
- </tr>
- </tbody>
-</table>
-</div>
-
-<div id="compat-mobile">
-<table class="compat-table">
- <tbody>
- <tr>
- <th>Feature</th>
- <th>Android</th>
- <th>Chrome for Android</th>
- <th>Firefox Mobile (Gecko)</th>
- <th>IE Mobile</th>
- <th>Opera Mobile</th>
- <th>Safari Mobile</th>
- </tr>
- <tr>
- <td>Basic support</td>
- <td>{{CompatVersionUnknown}}</td>
- <td>{{CompatVersionUnknown}}</td>
- <td>{{CompatVersionUnknown}}</td>
- <td>{{CompatVersionUnknown}}</td>
- <td>{{CompatVersionUnknown}}</td>
- <td>{{CompatVersionUnknown}}</td>
- </tr>
- </tbody>
-</table>
-</div>
-
-<h2 id="Véase_también">Véase también</h2>
-
-<ul>
- <li>{{jsxref("Function")}}</li>
- <li>{{jsxref("Function.length")}}</li>
-</ul>