--- title: length slug: Web/JavaScript/Reference/Functions/arguments/length tags: - Functions - JavaScript - Propriété - Reference - arguments translation_of: Web/JavaScript/Reference/Functions/arguments/length original_slug: Web/JavaScript/Reference/Fonctions/arguments/length ---
La propriété arguments.length
contient le nombre d'arguments passés à la fonction.
arguments.length
La propriété arguments.length
fournit le nombre d'arguments qui ont été passés à la fonction. Cette quantité peut être inférieure ou supérieure au nombre de paramètres explicitement déclarés dans la définition de la fonction (voir également {{jsxref("Function.length")}}).
arguments.length
Dans cet exemple, on définit une fonction qui permet d'additionner plusieurs nombres.
function somme(x /*, y, z, ...*/) { x = Number(x); for (var i = 1; i < arguments.length; i++) { x += Number(arguments[i]); } return x; }
résultat = somme(3, 4, 5); // renvoie 12 résultat = somme(3, 4); // renvoie 7 résultat = somme(103, 104, 105); // renvoie 312
Note : arguments.length
ne doit pas être confondu avec {{jsxref("Function.length")}}.
Spécification | État | Commentaires |
---|---|---|
{{SpecName('ES1')}} | {{Spec2('ES1')}} | Définition initiale. Implémentée par JavaScript 1.1 |
{{SpecName('ES5.1', '#sec-10.6', 'Arguments Object')}} | {{Spec2('ES5.1')}} | |
{{SpecName('ES6', '#sec-arguments-exotic-objects', 'Arguments Exotic Objects')}} | {{Spec2('ES6')}} | |
{{SpecName('ESDraft', '#sec-arguments-exotic-objects', 'Arguments Exotic Objects')}} | {{Spec2('ESDraft')}} |
{{Compat("javascript.functions.arguments.length")}}