Commanders quarterback Jayden Daniels to return vs. Vikings
The Washington Commanders will have their starting quarterback back under centre.
Head coach Dan Quinn confirmed to reporters Friday that Jayden Daniels will return against the Minnesota Vikings.
Daniels has missed Washington’s past three games with a dislocated left elbow. The Commanders’ quarterback has missed six of the club’s 12 games this season.
The Commanders (3-9) have lost seven games in a row, a year after going 12-5 during the regular season and making it all the way to the NFC title game, with Daniels appearing in all 20 of their games.
With Marcus Mariota taking over for Daniels, Washington went 1-5, including overtime defeats against the Miami Dolphins and Denver Broncos in the past two outings.
if (!res.ok) { throw new Error('Failed to fetch odds data'); }
const data = await res.json(); const oddsData = data?.data?.game?.details?.current_line; const visitingTeam = data?.data?.game?.visiting_team; const visitingTeamLogo = data?.data?.game?.visiting_team?.image_url_90; const homeTeam = data?.data?.game?.home_team; const homeTeamLogo = data?.data?.game?.home_team?.image_url_90; const gameTimestamp = data?.data?.game?.details?.timestamp;
return { oddsData, visitingTeam, visitingTeamLogo, homeTeam, homeTeamLogo, gameTimestamp }; }
async function renderBetMGM(componentId, league, gameId) { let oddsData, visitingTeam, visitingTeamLogo, homeTeam, homeTeamLogo, gameTimestamp, error;
const container = document.getElementById(componentId + '-odds'); if (!container) return;
try { ({ oddsData, visitingTeam, visitingTeamLogo, homeTeam, homeTeamLogo, gameTimestamp } = await fetchOddsData(league, gameId)); } catch (err) { error = err.message; }
if (error) { container.innerHTML = `
`; return; }
if (!oddsData) { container.innerHTML = `
`; return; }
let gameDate = new Date(gameTimestamp * 1000); const gameDateFormatted = gameDate.toLocaleDateString('en-US', { year: 'numeric', month: 'long', day: 'numeric' });
container.innerHTML = `
`; }
// Example usage renderBetMGM('block_d326562724b8235f0bd98e7b29fec163', 'NFL', 'f2f2beb7-5556-47f5-9258-0c476f525ede');
Daniels hurt his non-throwing elbow in a loss to the Seattle Seahawks on Nov. 2, when his left arm bent awkwardly as he braced himself while being tackled in the fourth quarter. Washington already was down by 31 points at the time, and Quinn acknowledged the next day that it was a mistake to still have his starting QB in the game.
— With files from the Associated Press
What's Your Reaction?
Like
0
Dislike
0
Love
0
Funny
0
Angry
0
Sad
0
Wow
0