Al Etihad Credit Bureau, the UAE’s credit reporting company, said on Tuesday it has launched the commercial bureau reporting service,...
// احصل على قائمة بمباريات كرة القدم من موقع Soccerway
async function getMatches() {
const url = "https://www.soccerway.com/";
const response = await fetch(url);
const matches = await response.json();
for (const match of matches) {
match.result = match.homeScore + " - " + match.awayScore;
}
return matches;
}
// اعرض مباريات كرة القدم
function renderMatches(matches) {
const ul = document.createElement("ul");
for (const match of matches) {
const li = document.createElement("li");
li.innerHTML = `
${match.homeTeam} - ${match.awayTeam} (${match.result})
${match.date} - ${match.time}
${match.competition}
${match.stadium}
`; ul.appendChild(li); } document.body.appendChild(ul); } // احصل على قائمة بمباريات كرة القدم وعرضها const matches = await getMatches(); renderMatches(matches);Wednesday, March 25, 2015
Business
Design
Fashion
Games
Latest News
Links
Movies
Movies Post
News
Pictures
Recent Videos
Slider
Sports
Travel
Al Etihad Credit Bureau
12:46 PM
Al Etihad Credit Bureau, the UAE’s credit reporting company, said on Tuesday it has launched the commercial bureau reporting service,...
Business
Design
Fashion
Games
Latest News
Links
Movies
Movies Post
Music
News
Pictures
Recent Videos
Slider
Sports
Travel
my new blogger
11:54 AM
Al Etihad Credit Bureau, the UAE’s credit reporting company, said on Tuesday it has launched the commercial bureau reporting servic...
Subscribe to:
Posts (Atom)
