Blue Jackets defenceman Zach Werenski out against Sabres

The Columbus Blue Jackets will be without top defenceman Zach Werenski when they visit the Buffalo Sabres on Tuesday night.

Blue Jackets defenceman Zach Werenski out against Sabres

The Columbus Blue Jackets will be without top defenceman Zach Werenski when they visit the Buffalo Sabres on Tuesday night.

Werenski sustained an upper-body injury during the Blue Jackets’ 5-3 loss to the Dallas Stars on Sunday but returned to the game. He is considered day-to-day, according to Aaron Portzline of The Athletic.

The 27-year-old Werenski leads the Blue Jackets with 57 points (17 goals and 40 assists) in 53 games this season.

He is also first on the team in power-play points (19), game-winning goals (four), shots on goal (200) and average ice time (26:48).

Werenski was named the NHL’s third star of the month in January with 17 points (six goals and 11 assists) in 14 games. He is also on the U.S. roster for next week’s 4 Nations Face-Off tournament.

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 = `

Error: ${error}

`; return; }

if (!oddsData) { container.innerHTML = `

Odds data not available

`; return; }

let gameDate = new Date(gameTimestamp * 1000); const gameDateFormatted = gameDate.toLocaleDateString('en-US', { year: 'numeric', month: 'long', day: 'numeric' });

container.innerHTML = `

BetMGM Odds
Moneyline
${visitingTeam.short_name}
${oddsData.away_money > 0 ? `+${oddsData.away_money}` : oddsData.away_money}
${homeTeam.short_name}
${oddsData.home_money > 0 ? `+${oddsData.home_money}` : oddsData.home_money}
Spread
${oddsData.fav_id === visitingTeam.id ? oddsData.fav_points : oddsData.fav_points > 0 ? `-${oddsData.fav_points}` : `+${Math.abs(oddsData.fav_points)}`}
${oddsData.fav_id === visitingTeam.id ? oddsData.fav_money > 0 ? `+${oddsData.fav_money}` : oddsData.fav_money : oddsData.underdog_money > 0 ? `+${oddsData.underdog_money}` : oddsData.underdog_money}
${oddsData.fav_id === homeTeam.id ? oddsData.fav_points : oddsData.fav_points > 0 ? `-${oddsData.fav_points}` : `+${Math.abs(oddsData.fav_points)}`}
${oddsData.fav_id === homeTeam.id ? oddsData.fav_money > 0 ? `+${oddsData.fav_money}` : oddsData.fav_money : oddsData.underdog_money > 0 ? `+${oddsData.underdog_money}` : oddsData.underdog_money}
Over/Under
O ${oddsData.total}
${oddsData.over_money > 0 ? `+${oddsData.over_money}` : oddsData.over_money}
U ${oddsData.total}
${oddsData.under_money > 0 ? `+${oddsData.under_money}` : oddsData.under_money}

`; }

// Example usage renderBetMGM('block_e3bf46c11a614bf10d22f806d9f71acb', 'NHL', '09f7b133-3736-4acb-9cd7-99da2cb82bea');

The Blue Jackets (26-20-7) hold the second wild-card spot in the Eastern Conference and have three wins in their past five games.

Meanwhile, the Sabres (21-26-5) will also be missing their top scorer as Tage Thompson is out of the lineup.