Lakers’ LeBron James out vs. Celtics with multiple injuries
A night after dishing out a game-winning assist, LeBron James is heading back to the sidelines to manage a pair of lingering injuries.
The Los Angeles Lakers star forward will miss Friday’s game against the Boston Celtics with right sciatica and left foot joint arthritis, the team confirmed in the NBA’s injury report.
James had previously been listed by the team as doubtful.
The two ailments have bothered the four-time champion for the entirety of what’s been an injury-riddled 23rd season, managing to suit up for just six of the Lakers’ 21 games.
This season, James is averaging a mere 14 points and 7.8 assists. He scored just eight points on 17 shots Thursday vs. Toronto, snapping a historic streak of 1,297 consecutive games with 10-plus points.
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_23753b6fe80ed682ee9876d8eb4a120e', 'NBA', '6485b15f-9a2f-477c-b153-95cc0010aa4a');
What's Your Reaction?
Like
0
Dislike
0
Love
0
Funny
0
Angry
0
Sad
0
Wow
0