Chudo6

Babeeva Julia-09.05.22-Міста

May 9th, 2022
1,056
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. //https://shpp.gitbook.io/zero/tutorials/arrays/cities
  2. let town = [];
  3. for (let i = 0; i < 10; i++) {
  4.     town[i] = prompt("Введи місто");
  5. }
  6. let hometown = prompt("Введи своє рідне місто");
  7. let answer = "я НЕ знаю твоє місто!";
  8. for (let i = 0; i < 10; i++) {
  9.     if (town[i] == hometown) {
  10.         answer = ("я знаю твоє місто!");
  11.     }
  12. }
  13. console.log(answer);
Advertisement
Add Comment
Please, Sign In to add comment