An array constructor is an expression that builds an array value from values for its member elements.
Un constructeur de tableau est une expression qui construit une valeur de tableau à partir de valeurs de ses membres.
An open array constructor, like a set constructor, is a sequence of expressions separated by commas and enclosed in brackets.
Un constructeur de tableau ouvert, comme un constructeur d'ensemble, est une série, placée entre crochets, d'expressions séparées par des virgules.
When you specify a single numeric parameter with the Array constructor, you specify the initial length of the array.
Lorsque vous spécifiez un seul paramètre numérique avec le constructeur Array, vous indiquez la longueur initiale du tableau.
The prototype object of the Array constructor can be modified to affect all Array instances.
Le prototype du constructeur Array peut être modifié afin d'affecter l'ensemble des instances grâce à l'héritage.
An array constructor can be used to specify an initial value of a global dynamic array variable
Un constructeur de tableau peut être utilisé pour spécifier la valeur initiale d'une variable de tableau dynamique global
A simple array constructor consists of the key word ARRAY, a left square bracket [, one or more expressions (separated by commas) for the array element values, and finally a right square bracket].
Un constructeur de tableau simple utilise le mot clé ARRAY, un crochet ouvrant [, une ou plusieurs expressions (séparées par des virgules) pour les valeurs des éléments du tableau et finalement un crochet fermant].
Multidimensional array constructor elements can be anything yielding an array of the proper kind, not only a sub-ARRAY construct.
Les éléments d'un constructeur de tableau multidimensionnel peuvent être tout ce qui récupère un tableau du bon type, pas seulement une construction d'un tableau imbriqué.
In Perl, you'll want to use the array constructor [] or the hash constructor {} instead.
En Perl, vous devez utiliser à la place le constructeur de tableau [] ou le constructeur de hachages {}.
In this form, the array constructor is written with the key word ARRAY followed by a parenthesized (not bracketed) subquery. For example
Avec cette forme, le constructeur de tableau est écrit avec le mot-clé ARRAY suivi par une sous-requête entre parenthèses (et non pas des crochets).
Any cast applied to the outer ARRAY constructor propagates automatically to all the inner constructors.
Toute conversion appliquée au constructeur ARRAY externe se propage automatiquement à tous les constructeurs internes.
A JavaScript array is initialized with the given elements, except in the case where a single argument is passed to the Array constructor and that argument is a number.
Un tableau est initialisé avec les éléments donnés, sauf dans le cas où un argument seul est passé au constructeur Array et que l'argument est un nombre.
If the only argument passed to the Array constructor is an integer between 0 and 232-1 (inclusive), this returns a new JavaScript array with length set to that number.
Si le premier argument passé au constructeur Array est un entier entre 0 et 232-1 (inclus), un nouveau tableau sera créé avec ce nombre d'éléments.
Note that this special case only applies to JavaScript arrays created with the Array constructor, not array literals created with the bracket syntax.
Notez que ce cas spécial s'applique aux tableaux créés avec le constructeur Array, et non aux tableaux créés avec la syntaxe crochets.