Lionel Messi has made the FIFA team of the year as a left winger or striker every year for the past ten years. However, Lionel Messi's name was not included in the FIFA 2021 team of the year. Kylian Mbappe was assigned to the right wing, with Lewandowski as the team's striker. After doing some research into what may have caused this, I discovered that Lionel Messi did not win a trophy in 2019/2020 season. While Kylian Mbappe and Robert Lewandowski secured league titles and advanced to the UEFA Champions League finals.
Lionel Messi has won the Copa del Rey this season, but if he does not win La Liga, his name could be left off the FIFA 2022 team of the year. However, if my research is right, Cristiano Ronaldo, who did not win a trophy with Juventus this season, would not make the FIFA 2022 team of the year.
3 Comments
This comment has been removed by the author.
ReplyDeleteTYznYJL7fQvJFjp7yd7v3eucCCQpybxvSC
ReplyDeletedays = 2; //starting number of days
ReplyDeletelet hours = 0; // starting number of hours
let minutes = 2; // starting number of minutes
let seconds = 5; // starting number of seconds
// converts all to seconds
let totalSeconds =
days * 60 * 60 * 24 + hours * 60 * 60 + minutes * 60 + seconds;
//temporary seconds holder
let tempSeconds = totalSeconds;
// calculates number of days, hours, minutes and seconds from a given number of seconds
const convert = (value, inSeconds) => {
if (value > inSeconds) {
let x = value % inSeconds;
tempSeconds = x;
return (value - x) / inSeconds;
} else {
return 0;
}
};
//sets seconds
const setSeconds = (s) => {
document.querySelector("#seconds").textContent = s + "s";
};
//sets minutes
const setMinutes = (m) => {
document.querySelector("#minutes").textContent = m + "m";
};
//sets hours
const setHours = (h) => {
document.querySelector("#hours").textContent = h + "h";
};
//sets Days
const setDays = (d) => {
document.querySelector("#days").textContent = d + "d";
};
// Update the count down every 1 second
var x = setInterval(() => {
//clears countdown when all seconds are counted
if (totalSeconds <= 0) {
clearInterval(x);
}
setDays(convert(tempSeconds, 24 * 60 * 60));
setHours(convert(tempSeconds, 60 * 60));
setMinutes(convert(tempSeconds, 60));
setSeconds(tempSeconds == 60 ? 59 : tempSeconds);
totalSeconds--;
tempSeconds = totalSeconds;
}, 1000);
say something