From bf8e099b9c8b3c60d60b3712b4fc97b052c39887 Mon Sep 17 00:00:00 2001 From: julieng Date: Tue, 3 Aug 2021 08:03:23 +0200 Subject: convert content to md --- .../reference/global_objects/map/keys/index.md | 72 +++++++++------------- 1 file changed, 28 insertions(+), 44 deletions(-) (limited to 'files/fr/web/javascript/reference/global_objects/map/keys/index.md') diff --git a/files/fr/web/javascript/reference/global_objects/map/keys/index.md b/files/fr/web/javascript/reference/global_objects/map/keys/index.md index 423cf8d7dd..94943f763b 100644 --- a/files/fr/web/javascript/reference/global_objects/map/keys/index.md +++ b/files/fr/web/javascript/reference/global_objects/map/keys/index.md @@ -11,25 +11,26 @@ tags: translation_of: Web/JavaScript/Reference/Global_Objects/Map/keys original_slug: Web/JavaScript/Reference/Global_Objects/Map/keys --- -
{{JSRef}}
+{{JSRef}} -

La méthode keys() renvoie un objet Iterator qui contient les clés de chaque élément de l'objet Map, dans leur ordre d'insertion.

+La méthode **`keys()`** renvoie un objet [`Iterator`](/fr/docs/Web/JavaScript/Guide/iterateurs_et_generateurs) qui contient les clés de chaque élément de l'objet `Map`, dans leur ordre d'insertion. -
{{EmbedInteractiveExample("pages/js/map-prototype-keys.html")}}
+{{EmbedInteractiveExample("pages/js/map-prototype-keys.html")}} -

Syntaxe

+## Syntaxe -
maMap.keys()
+ maMap.keys() -

Valeur de retour

+### Valeur de retour -

Un nouvel objet Iterator {{jsxref("Map")}}.

+Un nouvel objet `Iterator` {{jsxref("Map")}}. -

Exemples

+## Exemples -

Utiliser keys()

+### Utiliser `keys()` -
var maMap = new Map();
+```js
+var maMap = new Map();
 maMap.set("0", "toto");
 maMap.set(1, "truc");
 maMap.set({}, "bidule");
@@ -39,37 +40,20 @@ var mapIter = maMap.keys();
 console.log(mapIter.next().value); // "0"
 console.log(mapIter.next().value); // 1
 console.log(mapIter.next().value); // Object
-
- -

Spécifications

- - - - - - - - - - - - - - - - - - - -
SpécificationÉtatCommentaires
{{SpecName('ES2015', '#sec-map.prototype.keys', 'Map.prototype.keys')}}{{Spec2('ES2015')}}Définition initiale.
{{SpecName('ESDraft', '#sec-map.prototype.keys', 'Map.prototype.keys')}}{{Spec2('ESDraft')}} 
- -

Compatibilité des navigateurs

- -

{{Compat("javascript.builtins.Map.keys")}}

- -

Voir aussi

- - +``` + +## Spécifications + +| Spécification | État | Commentaires | +| ------------------------------------------------------------------------------------------------ | ---------------------------- | -------------------- | +| {{SpecName('ES2015', '#sec-map.prototype.keys', 'Map.prototype.keys')}} | {{Spec2('ES2015')}} | Définition initiale. | +| {{SpecName('ESDraft', '#sec-map.prototype.keys', 'Map.prototype.keys')}} | {{Spec2('ESDraft')}} |   | + +## Compatibilité des navigateurs + +{{Compat("javascript.builtins.Map.keys")}} + +## Voir aussi + +- {{jsxref("Map.prototype.entries()")}} +- {{jsxref("Map.prototype.values()")}} -- cgit v1.2.3-54-g00ecf