Report: Lakers’ Luka Doncic out vs. Bucks with ankle injury
Superstar guard Luka Doncic is sitting out the team’s Thursday outing against the Milwaukee Bucks as he continues to nurse a sprained right ankle, ESPN’s Dave McMenamin reported.

The Los Angeles Lakers are playing it safe as the playoff push ramps up.
Superstar guard Luka Doncic is sitting out the team’s Thursday outing against the Milwaukee Bucks as he continues to nurse a sprained right ankle, ESPN’s Dave McMenamin reports.
The Lakers’ game against the Bucks is the second half of a back-to-back. They defeated the Denver Nuggets 120-108 on Wednesday, as Doncic finished with 31 points, eight rebounds and seven assists in 32 minutes.
The Lakers have had a packed schedule recently, playing six games in eight days dating back to a road game against the Bucks last Thursday.
Doncic has only missed one game over that stretch and has suited up for 16 of the Lakers’ last 18 games.
The 25-year-old has found his rhythm with the Lakers of late. He is currently averaging 26.5 points, 8.8 rebounds and 8.0 assists in the purple and gold.
With his newfound form, the Lakers are in the midst of a three-game win streak and sit third in the Western Conference with a 43-25 record.
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_40ad0e4a31055800c6f971f44bc3b8b1', 'nba', '71ae47ab-3d34-4c4f-84cd-3a767fb5d8f3');