Advertisement
Viktor_Profa

Viktor Viktorovich - 08.06.2022- Ліфт Empire State

Jun 8th, 2022
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. //https://shpp.gitbook.io/zero/tutorials/if-else/empire-state-building-lift
  2.  
  3. let number = prompt("Номер поверху")
  4.  
  5.  
  6. if (number < 1 || number > 102){
  7.     console.log("Невірний поверх")
  8. } else if (number >= 24 && number <= 39){
  9.     let password = prompt("Введіть пароль")
  10.     if (password = 1337){
  11.         console.log("Ок")
  12.     }
  13.     else{
  14.         console.log("Невірний пароль")
  15.     }
  16.    
  17. }else{
  18.     console.log("Ok")
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement