+ 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

25th Dec 2024, 7:49 AM
LYZX
LYZX - avatar
4 Respuestas
0
Zeig den Code.
25th Dec 2024, 8:51 AM
Lisa
Lisa - avatar
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"); }
25th Dec 2024, 8:01 PM
LYZX
LYZX - avatar
0
Where is the if-else? Where do you compare the pin to 1345?
25th Dec 2024, 8:05 PM
Lisa
Lisa - avatar
0
Just do let pin = Number(prompt(“Enter pin:”)); console.log(pin===1345?"Success":"Fail");
26th Dec 2024, 12:10 AM
Zvi
Zvi - avatar