Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //https://shpp.gitbook.io/zero/tutorials/if-else/empire-state-building-lift
- let floor = prompt("Вкажіть поверх");
- if (floor < 1 || floor > 120) {
- console.log("невірний поверх");
- } else if (floor >= 24 && floor <= 39) {
- let parol = prompt("Вкажіть пароль");
- if (parol == 1337) {
- console.log("ok");
- } else {
- console.log("пароль невірний");
- }
- } else {
- console.log("ok");
- }
Advertisement
Add Comment
Please, Sign In to add comment