diff options
Diffstat (limited to 'fr-fr')
-rw-r--r-- | fr-fr/javascript-fr.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fr-fr/javascript-fr.html.markdown b/fr-fr/javascript-fr.html.markdown index fa9ffa04..186859ab 100644 --- a/fr-fr/javascript-fr.html.markdown +++ b/fr-fr/javascript-fr.html.markdown @@ -332,7 +332,7 @@ description; // = "Paul Ken 18 " // (ce qui inclut les objets Array, Map, Set, String, ... Mais pas un objet littéral !) let myPets = ""; const pets = ["cat", "dog", "hamster", "hedgehog"]; -for (let pet of pets){ //`(const pet of pets)` is also possible +for (let pet of pets){ //`(const pet of pets)` est également possible myPets += pet + " "; } |