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