Yankees’ Aaron Judge returning to right field against Blue Jays

1 week ago 6

Rommie Analytics

For the first time in a while, Aaron Judge won’t be a designated hitter.

The New York Yankees superstar is returning to right field for the first time since July 25 in Friday’s game against the Toronto Blue Jays.

Judge hit the 10-day injured list with a right elbow injury a day later. He returned Aug. 5 but has yet to play the field.

The slugger may have sustained the injury in a late-July series in Toronto when he winced after catching Alejandro Kirk’s seventh-inning fly in the right-field corner and throwing to second baseman Jazz Chisholm Jr. as Bo Bichette tagged up and went from second to third. Judge was shown on YES Network clenching his right hand in a fist.

“He had a throw in Toronto where it zinged him, it hurt,” manager Aaron Boone said.

Watch Blue Jays vs. Yankees on Sportsnet
Watch Blue Jays vs. Yankees on Sportsnet

The Toronto Blue Jays begin a massive series against the New York Yankees on Friday at Yankee Stadium. Catch the action on Sportsnet or Sportsnet+ starting at 7 p.m. ET / 4 p.m. PT.

Broadcast schedule

Still, the injury has not diminished his prowess at the plate.

Judge sits second in the AL with 43 home runs to go with 97 RBIs and a .322/.442/.663 slash line, putting him among the favourites for his third MVP trophy.

Meanwhile, Chisholm Jr. is also back in the lineup, batting fifth and playing second base, after bruising both knees and leaving early against the Houston Astros on Thursday.

Chisholm was banged up in a collision with Jose Altuve to end the third when he tagged Altuve out as he was attempting to steal second base.

He grabbed at his left knee before walking gingerly off the field after the play. But he remained in the game to bat in the top of the fourth and struck out. Chisholm was replaced by José Caballero for the bottom of the inning.

Boone said he bruised his right knee fielding a hard grounder hit by Ramón Urías to end the second inning.

Live coverage of the Blue Jays-Yankees tilt begins Friday with first pitch at 7 p.m. ET / 4 p.m. PT on Sportsnet and Sportsnet+.

–with files from The Associated 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
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_32b34e73fc979af4fb68f5eb4829032c', 'MLB', '9470c741-5569-4992-b258-e398d6518e3b');

Read Entire Article