+ 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 Respostas
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");