1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-05 06:17:36 +02:00

traduction

i forgot this was the french doc
This commit is contained in:
kevinnls
2020-08-20 13:24:05 +05:30
parent f92694aac9
commit c4175c9f62

View File

@@ -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 + " ";
}