Originally posted on SportsNet
The Edmonton Oilers will have to continue their playoff drive without a key player.
Zach Hyman will have surgery Wednesday and is likely out for the season after suffering an upper-body injury in Tuesday’s Game 4 win over the Dallas Stars, coach Kris Knoblauch announced Wednesday.
Hyman left midway through the first period of Edmonton’s 4-1 victory over Dallas that gave the Oilers a 3-1 lead in the best-of-seven series after taking a glancing hit from Stars winger Mason Marchment coming out of the defensive zone.
The 32-year-old dropped his stick, clearly favouring his right arm, and made a beeline for the bench before heading down the tunnel to Edmonton’s locker room with the team’s medical staff.
Hyman has five goals and six assists in 15 playoff games after notching 27 goals and 17 assists in 73 regular-season games.
The six-foot-one Toronto native had a career-high 54 goals last season.
The Oilers lead the Stars 3-1 in the Western Conference Final and can wrap up a second straight trip to the Stanley Cup Final with a win on Thursday in Game 5 in Dallas.
Watch the game on Sportsnet or Sportsnet+ at 8 p.m. ET / 6 p.m. MT.
— with files from The Canadian Press
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 ${gameDateFormatted}VS
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} Powered by
${gameDateFormatted} VS
Powered by
`; }
// Example usage renderBetMGM('block_d142a5603b42aec68b49319fc2a3a34f', 'NHL', 'c9087e83-bd3f-4eaa-99cf-fd8afeda0ecb');
Originally posted on SportsNet
Published: 1 week ago
Oilerhockey is in no way affiliated with the NHL or the Edmonton Oilers hockey club.
Copyright © 2009 - 2025 oilerhockey.com | Contact us at admin@oilerhockey.com | View our Privacy Policy or DMCA Policy