Vertaling van "objet Set" in Engels
We konden deze vermelding niet vinden. Er worden benaderende resultaten weergegeven. Controleer je spelling of stel voor deze term aan het woordenboek toe te voegen.
Les principales différences avec l'objet Set sont les suivantes
Cette méthode mappe le contenu de l'objet Set vers une hiérarchie d'objets, tout en gardant les clés numériques dans un tableau d'objets.
This method Maps the contents of the Set object to an object hierarchy while maintaining numeric keys as arrays of objects.
size: L'accesseur size est une propriété qui renvoie le nombre d'éléments contenus dans un objet Set.
size: The size accessor property returns the number of elements in a Set object.
La méthode entries() renvoie un nouvel objet Iterator qui contient un tableau composé de [valeur, valeur] pour chaque élément de l'objet Set, dans leur ordre d'insertion.
The entries() method returns a new Iterator object that contains an array of [value, value] for each element in the Set object, in insertion order.
L'objet Set (Ensemble en français) permet de stocker des valeurs uniques, de n'importe quel type, que ce soit des valeurs d'un type primitif ou des objets.
Please help translate this article from English. The Set object lets you store unique values of any type, whether primitive values or object references.
Type retourné: object Cette méthode Mappe le contenu de l'objet Set en un objet hiérarchisé et maintient les clés numériques en tableaux d'objets.
Return type: object This method Maps the contents of the Set object to an object hierarchy while maintaining numeric keys as arrays of objects.
Un objet set est une collection non-triée d'objets hashable distincts.
A set object is an unordered collection of distinct hashable objects.
Si un objet itérable est donné comme argument, l'ensemble de ses éléments sera ajouté au nouvel objet Set.
Parameters iterable If an iterable object is passed, all of its elements will be added to the new Set.
Les objets Set n'ont pas de clé (key). Cependant les deux premiers arguments correspondent à la valeur contenue dans l'objet Set.
There are no keys in Set objects, however, so the first two arguments are both values contained in the Set.
Les méthodes Set.prototype.values(), Set.prototype.keys() et Set.prototype.entries() de l'objet Set ont été implémentées (bug 869996).
The Set.prototype.values(), Set.prototype.keys() and Set.prototype.entries() methods on Set objects have been implemented (bug 869996).