1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-01-29 11:20:21 +01: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
No known key found for this signature in database
GPG Key ID: FE27DE88F970D441

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