Question du test Javascript - Les bases

Archivée

Qu’affiche le code suivant ?

let joueurConnecte = true;
let joueurFort = false;

if (joueurConnecte && joueurFort) {
    console.log("L’adversité est rude\n");
} else if (joueurConnecte && !joueurFort) {
    console.log("L’adversité n’est pas à craindre\n");
}
if (joueurConnecte || joueurFort) {
    console.log("Il y a potentiellement un vrai danger\n");
}
Auteur: KahinaStatut : Archivée(Nouvelle question !)Question passée 59 fois
-1
Évaluations de la communauté
developer avatar
Adrien
25/03/2022
There is a mistake in english version that give a false answer
developer avatar
Auteur anonyme
29/03/2022
Hello Adrien, could you be more specific ? Your alternative question seems identical.
developer avatar
Adrien
29/03/2022
Hi, in english version ansewers 3 and 4 are "Adversity is not to be feared There is potentially a real danger" where in frensh answer 3 is "Il y a potentiellement un vrai danger" and 4 is "L’adversité n’est pas à craindre Il y a potentiellement un vrai danger". As mentionned in my submition, and from my deductions, the 3rd answer should be "There is potentially a real danger". I also removed the loop keyword from the explaination since an if has nothign to do with loops
developer avatar
Auteur anonyme
30/03/2022
Thank you for your help. I validate the new question 🙏