diff options
author | kevinnls <57634663+kevinnls@users.noreply.github.com> | 2020-08-20 13:24:05 +0530 |
---|---|---|
committer | kevinnls <57634663+kevinnls@users.noreply.github.com> | 2020-08-20 13:24:05 +0530 |
commit | c4175c9f62d0aba25d619b4ec09307c4b8abd27a (patch) | |
tree | c40c0f622230e8ce031cdf0dc74a465a839bb108 | |
parent | f92694aac9c1b84d06455e728d76fa339eddc312 (diff) |
traduction
i forgot this was the french doc
-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 + " "; } |