-
Notifications
You must be signed in to change notification settings - Fork 0
/
assa.js
95 lines (93 loc) · 2.47 KB
/
assa.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
const ppo = {
countries: [
{
id: 1,
name: "Australia",
cities: [
{
name: "Sydney, Australia",
imageUrl: "enter_your_image_for_sydney.jpg",
description:
"A vibrant city known for its iconic landmarks like the Sydney Opera House and Sydney Harbour Bridge.",
},
{
name: "Melbourne, Australia",
imageUrl: "enter_your_image_for_melbourne.jpg",
description:
"A cultural hub famous for its art, food, and diverse neighborhoods.",
},
],
},
{
id: 2,
name: "Japan",
cities: [
{
name: "Tokyo, Japan",
imageUrl: "enter_your_image_for_tokyo.jpg",
description:
"A bustling metropolis blending tradition and modernity, famous for its cherry blossoms and rich culture.",
},
{
name: "Kyoto, Japan",
imageUrl: "enter_your_image_for_kyoto.jpg",
description:
"Known for its historic temples, gardens, and traditional tea houses.",
},
],
},
{
id: 3,
name: "Brazil",
cities: [
{
name: "Rio de Janeiro, Brazil",
imageUrl: "enter_your_image_for_rio.jpg",
description:
"A lively city known for its stunning beaches, vibrant carnival celebrations, and iconic landmarks.",
},
{
name: "São Paulo, Brazil",
imageUrl: "enter_your_image_for_sao-paulo.jpg",
description:
"The financial hub with diverse culture, arts, and a vibrant nightlife.",
},
],
},
],
temples: [
{
id: 1,
name: "Angkor Wat, Cambodia",
imageUrl: "enter_your_image_for_angkor-wat.jpg",
description:
"A UNESCO World Heritage site and the largest religious monument in the world.",
},
{
id: 2,
name: "Taj Mahal, India",
imageUrl: "enter_your_image_for_taj-mahal.jpg",
description:
"An iconic symbol of love and a masterpiece of Mughal architecture.",
},
],
beaches: [
{
id: 1,
name: "Bora Bora, French Polynesia",
imageUrl: "enter_your_image_for_bora-bora.jpg",
description:
"An island known for its stunning turquoise waters and luxurious overwater bungalows.",
},
{
id: 2,
name: "Copacabana Beach, Brazil",
imageUrl: "enter_your_image_for_copacabana.jpg",
description:
"A famous beach in Rio de Janeiro, Brazil, with a vibrant atmosphere and scenic views.",
},
],
};
ppo.countries.forEach((x) => (x.cities.forEach((x)=> {
console.log(x.description+" "+x.imageUrl+" "+x.name);
})));