+ 1
hilfe bei javascript einfĂŒhrung
bei der java script einfĂŒhrung gibt es eine ĂŒbung die heiĂt verifizierung unter der kategorie kontrollfluss ich habe dort alles mögliche versucht ich habe sogar chat gpt gefragt aber sogar chatgpt konnte das nicht lösen kann mir jemand helfen
4 Answers
0
Zeig den Code.
0
let pin = Number(prompt("Enter pin:"));
//log "Success" to the console if user input matches 1345
(1345) {
console.log("Success");
}
// log "Fail" if user input doesn't match the given pin
{
console.log("Fail");
}
0
Where is the if-else?
Where do you compare the pin to 1345?
0
Just do
let pin = Number(prompt(âEnter pin:â));
console.log(pin===1345?"Success":"Fail");