'+pages+''); $('.stream > div:odd').addClass('bgr_color'); updateHeight('#history'); }); window.activateTabArea = ensure(function(tab, areas){ var parsed = false; var parts = (areas || '').split('/'); window.fsonload = $.inArray('fs', parts) >= 0; if(fsonload){ parts.splice(parts.indexOf('fs'), 1); } var replayMode = false; if($.inArray('replay', parts)>=0){ replayMode = 'replay'; } var noSoundMode = false; if($.inArray('nosound', parts)>=0){ noSoundMode = 'nosound'; } if($.inArray('ns', parts)>=0){ noSoundMode = 'ns'; } var previewMode = null; if($.inArray('p', parts)>=0){ previewMode = 'p'; } if($.inArray('preview', parts)>=0){ previewMode = 'preview'; } if($.inArray('repeat', parts)>=0){ replayMode = 'repeat'; } if($.inArray('r', parts)>=0 || $.inArray('ro', parts)>=0){ replayMode = 'r'; } if(replayMode){ parts.splice(parts.indexOf(replayMode), 1); } if(noSoundMode){ parts.splice(parts.indexOf(noSoundMode), 1); } if(previewMode){ parts.splice(parts.indexOf(previewMode), 1); } if(previewMode){ if(!parts.length){ parts = ['1-14', '999:59']; } } var area = parts[0]; if(tab == 'history' && false){ var page = parseInt(area || '1') || 1; $.ajax({ url: 'https://login.wn.com/recent/json/?pp='+history_pp+'&skip='+history_pp*(page-1), dataType: 'jsonp', success: function(response){ $ensure(function(){ renderHistory(response, page); }); } }); return true; } if(tab == 'global_history' && false){ var page = parseInt(area || '1') || 1; globalHistory.fetchStream(page, '', function(){ updateHeight('#global_history'); }); return true; } if(tab == 'my_playlists' && false){ var page = parseInt(area || '1') || 1; myPlaylists.fetchStream(page, '', function(){ updateHeight('#my_playlists'); }); return true; } if(tab == 'my_videos' && false){ var page = parseInt(area || '1') || 1; myVideos.fetchStream(page, '', function(){ updateHeight('#my_videos'); }); return true; } if(tab == 'related_sites' && areas && matchPosition(areas)){ var seconds = parsePosition(areas); scrollRelated(seconds); return false; } if(matchPosition(area) || matchAction(area)){ parts.unshift('1'); area = parts[0]; } if(tab == 'expand' && area && area.match(/\d+/)) { var num = parseInt(area); if(num < 100){ //FIX ME. Load news page with ajax here } else if(num > 1900){ //FIX ME. Load timeline page with ajax here } } else if(tab.match(/^playlist\d+$/)){ var playerId = parseInt(tab.substring(8)); var vp = videoplayers[playerId]; window.descriptionsholder = $('.descriptionsplace'); if(!vp) return; // why? no player? if(replayMode){ $('.replaycurrent'+playerId).attr('checked', true); vp.setReplayCurrent(true); } var playQueue = []; window.playQueue = playQueue; var playQueuePosition = 0; var playShouldStart = null; var playShouldStop = null; var parseList = function(x){ var items = x.split(/;|,/g); var results = []; for (i in items){ try{ var action = parseAction(vp, items[i]); if(!action.video){ if(window.console && console.log) console.log("Warning: No video for queued entry: " + items[i]); }else{ results.push(action); } }catch(e){ if(window.console && console.log) console.log("Warning: Can''t parse queue entry: " + items[i]); } } return results; }; var scrollToPlaylistPosition = function(vp){ var ppos = vp.getPlaylistPosition(); var el = vp.playlistContainer.find('>li').eq(ppos); var par = el.closest('.playlist_scrollarea'); par.scrollTop(el.offset().top-par.height()/2); } var updateVolumeState = function(){ if(noSoundMode){ if(noSoundMode == 'turn-on'){ clog("Sound is on, vsid="+vp.vsid); vp.setVolumeUnMute(); noSoundMode = false; }else{ clog("Sound is off, vsid="+vp.vsid); vp.setVolumeMute(); noSoundMode = 'turn-on'; } } } var playQueueUpdate = function(){ var playPosition = playQueue[playQueuePosition]; vp.playFromPlaylist(playPosition.video); scrollToPlaylistPosition(vp); playShouldStart = playPosition.start; playShouldStop = playPosition.stop; }; var playQueueAdvancePosition = function(){ clog("Advancing play position..."); playQueuePosition ++; while(playQueuePosition < playQueue.length && !playQueue[playQueuePosition].video){ playQueuePosition ++; } if(playQueuePosition < playQueue.length){ playQueueUpdate(); }else if(vp.getReplayCurrent()){ playQueuePosition = 0; playQueueUpdate(); vp.seekTo(playShouldStart); vp.playVideo(); }else{ vp.pauseVideo(); playShouldStop = null; playShouldStart = null; } }; function loadMoreVideos(playerId, vp, start, finish, callback){ var playlistInfo = playlists[playerId-1]; if(playlistInfo.loading >= finish) return; playlistInfo.loading = finish; $.ajax({ url: '/api/upge/cheetah-photo-search/query_videos2', dataType: 'json', data: { query: playlistInfo.query, orderby: playlistInfo.orderby, start: start, count: finish-start }, success: function(response){ var pl = vp.getPlaylist().slice(0); pl.push.apply(pl, response); vp.setPlaylist(pl); callback(); } }); } if(parts.length == 1 && matchDash(parts[0])){ var pl = vp.getActualPlaylist(); var vids = parseDash(parts[0]); parts = []; for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': null }) } if(vids.length){ if(vids[vids.length-1]-1>=pl.length){ loadMoreVideos(playerId, vp, pl.length, vids[vids.length-1], function(){ if(fsonload){ activateTabArea(tab, parts[0]+'/fs'); }else{ activateTabArea(tab, parts[0]); } var pls = vp.getPlaylist(); vp.playFromPlaylist(pls[pls.length-1]); vp.playVideo(); scrollToPlaylistPosition(vp); }); return true; } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; playShouldStart = 0; } } if(previewMode){ var vids = []; var dur = 0; var pl = vp.getActualPlaylist(); area = parts[0]; if(parts.length == 1 && matchPosition(parts[0])){ vids = parseDash('1-'+pl.length); dur = parsePosition(parts[0]); parts = []; }else if(parts.length == 1 && matchDash(parts[0])){ vids = parseDash(parts[0]); dur = parsePosition("999:59"); parts = []; } if(parts.length == 2 && matchDash(parts[0]) && matchPosition(parts[1])){ vids = parseDash(parts[0]); dur = parsePosition(parts[1]); parts = []; } for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': dur }) } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } } if(parts.length>1){ for(var i = 0; i < parts.length; i++){ var sel = findMatchingVideo(vp, parts[i]); if(sel){ playQueue.push({ 'video': sel, 'start': 0, 'stop': null }) } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } }else if(area){ var sel = findMatchingVideo(vp, area); if(sel){ vp.playFromPlaylist(sel); playShouldStart = 0; parsed = true; } } if(fsonload || replayMode){ playShouldStart = 0; } if(document.location.search.match('at=|queue=')){ var opts = document.location.search.replace(/^\?/,'').split(/&/g); for(var o in opts){ if(opts[o].match(/^at=(\d+:)?(\d+:)?\d+$/)){ playShouldStart = parsePosition(opts[o].substr(3)) } if(opts[o].match(/^queue=/)){ playQueue = parseList(opts[o].substr(6)); if(playQueue){ playQueuePosition = 0; playQueueUpdate(); } } } } if(matchPosition(parts[1])){ playShouldStart = parsePosition(parts[1]); parsed = true; } if(matchAction(parts[1])){ var action = parseAction(vp, area+'/'+parts[1]); playShouldStart = action.start; playShouldStop = action.stop; parsed = true; } if(playShouldStart !== null && !playQueue.length){ playQueue.push({ video: vp.getCurrentVideo(), start: playShouldStart, stop: playShouldStop }); } if(playShouldStart != null){ setInterval(function(){ if(playShouldStop && vp.currentPlayer && vp.currentPlayer.getCurrentTime() > playShouldStop){ playShouldStop = null; if(vp.getCurrentVideo() == playQueue[playQueuePosition].video){ playQueueAdvancePosition(); }else{ playShouldStart = null; } } }, 500); vp.playerContainer.bind('videoplayer.player.statechange', function(e, state){ if(state == 'ended'){ // advance to the next video playQueueAdvancePosition(); } }); vp.playerContainer.bind('videoplayer.player.readychange', function(e, state){ if(state){ updateVolumeState(); if(playShouldStart !== null){ vp.seekTo(playShouldStart); playShouldStart = null; }else{ playShouldStop = null; // someone started other video, stop playing from playQueue } } if(fsonload) { triggerFullscreen(playerId); fsonload = false; } }); } } else if(tab.match(/^wiki\d+$/)){ if(firstTimeActivate){ load_wiki($('#'+tab), function(){ if(area){ var areaNode = $('#'+area); if(areaNode.length>0){ $('html, body').scrollTop(areaNode.offset().top + 10); return true; } } }); } } return parsed; }) window.activateTab = ensure(function(tab, area){ window.activeArea = null; if(tab == 'import_videos'){ if(area){ import_videos(area); }else{ start_import(); } return true; } if(tab == 'chat'){ update_chat_position($('.chat').eq(0)); window.activeArea = 'chat'; jQuery('.tabtrigger').offscreentabs('activateTab', 'chat'); return true; } if(tab in rev_names){ tab = rev_names[tab]; } if(tab.match(':')){ return false; } var sup = $('ul li a[id=#'+tab+']'); if(sup && sup.length>0){ window.activeArea = area; sup.first().click(); if(!window.activateTabArea(tab, area)){ window.activeArea = null; } window.activeArea = null; return true; }else{ var have_tabs = $('#playlist_menu li').length; if(tab.match(/^playlists?\d+$/)){ var to_add = +tab.substring(8).replace(/^s/,'')-have_tabs; if(to_add>0 && have_tabs){ add_more_videos(to_add); return true; } } } return false; }); window.currentPath = ensure(function(){ return window.lastHistory.replace(basepath, '').split('?')[0]; }); window.main_tab = window.main_tab || 'videos'; window.addHistory = ensure(function(path){ if(window.console && console.log) console.log("Adding to history: "+path); if(window.history && history.replaceState && document.location.hostname.match(/^(youtube\.)?(\w{2,3}\.)?wn\.com$/)){ if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = basepath; } else if( path.match('^'+main_tab+'/') ){ path = basepath + '/' + path.replace(main_tab+'/', '').replace('--','/'); } else { path = basepath + '/' + path.replace('--','/'); } if(document.location.search){ path += document.location.search; } if(window.lastHistory) { history.pushState(null, null, path); } else if(window.lastHistory != path){ history.replaceState(null, null, path); window.lastHistory = path; } } else{ path = path.replace('--','/'); if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = ''; } if(window.lastHistory != '/'+path){ window.location.hash = path? '/'+path : ''; window.lastHistory = '/'+path; } } }); $('.tabtrigger li a').live('click', ensure(function() { var tab = $(this).attr('id'); if(tab.substring(0,1) == '#'){ var name = tab.substring(1); if(name in menu_names){ name = menu_names[name][0]; } realTab = rev_names[name]; $('#'+realTab).show(); if(window.console && console.log) console.log("Triggering tab: "+name+(window.activeArea?" activeArea="+window.activeArea:'')); var path = name; if(window.activeArea){ path = path + '/' + window.activeArea; } if(tab.match(/#playlist\d+/) || tab.match(/#details\d+/)){ $('.multiple-playlists').show(); $('.related_playlist').show(); $('.longest_videos_playlist').show(); }else { $('.multiple-playlists').hide(); $('.related_playlist').hide(); $('.longest_videos_playlist').hide(); } // start the related script only when the tab is on screen showing if (tab.match(/related_sites/)) { if (mc) { mc.startCredits(); } } window.activeTab = realTab; addHistory(path); setTimeout(ensure(function(){ if(tab.match(/language--/)){ $('.tabtrigger').offscreentabs('activateTab', 'language'); } if(tab.match(/weather/)) { $('.tabtrigger').offscreentabs('activateTab', 'weather'); loadContinent(); } updateMenus(tab); updateHeight(); }), 10); } return false; })); }); -->

Justin Verlander

Justin Brooks Verlander (born February 20, 1983) is an American professional baseball pitcher for the Detroit Tigers of Major League Baseball (MLB).

In 2006, Verlander was named the American League (AL) Rookie of the Year. On June 12, 2007, he pitched a no-hitter—the first ever at Comerica Park—against the Milwaukee Brewers, striking out 12 batters and walking four. He pitched a second no-hitter against the Toronto Blue Jays on May 7, 2011, in Toronto, walking one and facing the minimum 27 batters. On November 15, 2011, Verlander was named the 2011 AL Cy Young Award winner by a unanimous vote, becoming the first American League pitcher since Johan Santana in 2006 to win the award in such a fashion. On November 21, 2011, Verlander was voted the AL Most Valuable Player (MVP), winning with 280 points over Jacoby Ellsbury's 242, completing a sweep of the Cy Young Award and MVP. He is listed at 6'5" and 225 pounds.

Baseball career

Amateur career

Verlander's father Richard sent him to The Richmond Baseball Academy. He was able to throw his fastball 84 mph (135 km/h) shortly after joining the academy. His velocity plateaued at 86 mph (138 km/h) during his senior year at Goochland High School, during which he was sidetracked by strep throat. Verlander's velocity reached 87 mph (140 km/h) during his first year at Old Dominion.

Podcasts:

  • Astros' Justin Verlander dominates for first ever World Series win!!

    Justin Verlander dominates for first ever World Series win!! Don't forget to subscribe! https://www.youtube.com/mlb Follow us elsewhere too: Twitter: https://twitter.com/MLB Instagram: https://www.instagram.com/mlb/ Facebook: https://www.facebook.com/mlb TikTok: https://www.tiktok.com/share/user/6569247715560456198 Check out MLB.com daily to watch the MLB.TV Free Game of the Day! https://mlb.com/freegame Visit our site for all baseball news, stats and scores! https://www.mlb.com/

    published: 04 Nov 2022
  • All 27 Outs from Justin Verlander's No-Hitter

    Watch Justin Verlander get all 27 outs of his no-hitter vs. the Blue Jays! Don't forget to subscribe! https://www.youtube.com/mlb Follow us elsewhere too: Twitter: https://twitter.com/MLB Instagram: https://www.instagram.com/mlb/ Facebook: https://www.facebook.com/mlb TikTok: https://www.tiktok.com/share/user/6569247715560456198 Visit our site for all baseball news, stats and scores! https://www.mlb.com/

    published: 02 Sep 2019
  • Justin Verlander SHUTS DOWN Yankees, strikes out 11 in ALCS Game 1

    Justin Verlander SHUTS DOWN Yankees, strikes out 11 in ALCS Game 1 Don't forget to subscribe! https://www.youtube.com/mlb Follow us elsewhere too: Twitter: https://twitter.com/MLB Instagram: https://www.instagram.com/mlb/ Facebook: https://www.facebook.com/mlb TikTok: https://www.tiktok.com/share/user/6569247715560456198 Check out MLB.com daily to watch the MLB.TV Free Game of the Day! https://mlb.com/freegame Visit our site for all baseball news, stats and scores! https://www.mlb.com/

    published: 20 Oct 2022
  • Justin Verlander charms Kate Upton

    8/4/14: Kate Upton is given a baseball at the Yankee game by Tigers pitcher Justin Verlander Check out http://m.mlb.com/video for our full archive of videos, and subscribe on YouTube for the best, exclusive MLB content: http://youtube.com/MLB About MLB.com: Commissioner Allan H. (Bud) Selig announced on January 19, 2000, that the 30 Major League club owners voted unanimously to centralize all of Baseball's internet operations into an independent technology company. Major League Baseball Advanced Media (MLBAM) was formed and charged with developing, building and managing the most comprehensive baseball experience available on the internet. In August 2002, MLB.com streamed the first-ever live, full length MLB game when the Texas Rangers and New York Yankees faced off at Yankee Stadium....

    published: 05 Aug 2014
  • Justin Verlander Max Scherzer BEEF EXPLAINED

    Justin Verlander Max Scherzer BEEF EXPLAINED #mlb #baseball #sports Tim Healey article on the situation: https://www.newsday.com/beta/sports/baseball/mets/justin-verlander-max-scherzer-detroit-tigers-gcdr1nvl iTALK STUDIOS INSTAGRAM: https://instagram.com/italk.studios?utm_medium=copy_link iTALK STUDIOS TWITTER: https://twitter.com/italkstudiosyt?s=21 iTALK STUDIOS DISCORD SERVER: https://discord.gg/qhFTAQF2 iTALK STUDIOS SECOND CHANNEL: https://m.youtube.com/channel/UCsfHvVTMCi1_gPtlUmtUbTg VIDEO MUSIC CREDIT TO @mikhelvin AND @samuelkimmusic Mik ► Spotify: https://spoti.fi/3jaB7yS ► Instagram: https://www.instagram.com/mikhelvin Samuel Kim ► Spotify: https://spoti.fi/2vYKPBd ► YouTube: https://www.youtube.com/c/samuelkimmusic ► Instagram: https://www.instagram.com/samuelkimmu...

    published: 15 Feb 2023
  • Justin Verlander's EPIC locker room speech after the Houston Astros advance to ALCS | Flippin’ Bats

    Watch Justin Verlander's EPIC locker room speech after the Houston Astros punched their ticket to the all Texas ALCS. #FlippinBats #mlb #houston #astros #playoffs #postseason #alcs SUBSCRIBE to get the latest Flippin’ Bats with Ben Verlander content: https://www.youtube.com/flippinbatspod?sub_confirmation=1 Listen to the Flippin’ Bats with Ben Verlander podcast on Apple Podcasts: http://foxs.pt/fbpod_YT Listen to the Flippin’ Bats with Ben Verlander podcast on Spotify: http://foxs.pt/fbpod_YT_Spot The all-new FOX Sports App, built for the modern sports fan: https://tinyurl.com/y4uouolb ►FOX Sports YouTube: https://www.youtube.com/user/FoxSports Like Flippin’ Bats with Ben Verlander Facebook: https://www.facebook.com/flippinbatspod/ Follow Flippin’ Bats with Ben Verlander on TikTok: ...

    published: 12 Oct 2023
  • Justin Verlander returns to Houston where he won TWO World Series titles! (Astros career highlights)

    Justin Verlander takes the mound against his former team in Houston. Take a look back at his legendary Astros run (2017-2022) Don't forget to subscribe! https://www.youtube.com/mlb Follow us elsewhere too: Twitter: https://twitter.com/MLB Instagram: https://www.instagram.com/mlb/ Facebook: https://www.facebook.com/mlb TikTok: https://www.tiktok.com/share/user/6569247715560456198 Check out MLB.com daily to watch the MLB.TV Free Game of the Day! https://mlb.com/freegame Visit our site for all baseball news, stats and scores! https://www.mlb.com/

    published: 20 Jun 2023
  • Justin Verlander's Impossible Inning: A Study in Velocity and Spin Rate l Baseball Bits

    TWITTER: https://twitter.com/FoolishBB PATREON: https://www.patreon.com/foolishbaseball On May 24, 2012, Justin Verlander pitched the greatest inning ever. That's my thesis and I'm sticking to it. It was not an immaculate inning, nor was it three pitches. It was, however, the most dominant inning ever pitched. In this third episode of Baseball Bits, we take a look at data from Statcast and PITCHf/x to show precisely just how special Justin Verlander's four seam fastball spin rate and Justin Verlander's velocity were in the 8th inning. Statcast spin rate is huge now, but can we use PITCHf/x to get a good estimate for data before 2015? It's time to find out in this baseball video essay, which also seeks to explain the term "rising fastball." Oh, and did I mention that JV is angry the whol...

    published: 20 Dec 2018
  • Justin Verlander gives Kate Upton a baseball

    8/4/14: Kate Upton is given a baseball at the Yankee game by Tigers pitcher Justin Verlander Check out http://m.mlb.com/video for our full archive of videos, and subscribe on YouTube for the best, exclusive MLB content: http://youtube.com/MLB About MLB.com: Commissioner Allan H. (Bud) Selig announced on January 19, 2000, that the 30 Major League club owners voted unanimously to centralize all of Baseball's internet operations into an independent technology company. Major League Baseball Advanced Media (MLBAM) was formed and charged with developing, building and managing the most comprehensive baseball experience available on the internet. In August 2002, MLB.com streamed the first-ever live, full length MLB game when the Texas Rangers and New York Yankees faced off at Yankee Stadium....

    published: 05 Aug 2014
  • The RISE, FALL, And RESURGENCE Of Justin Verlander

    The RISE, FALL, And RESURGENCE Of Justin Verlander. #mlb #baseball #sports iTALK STUDIOS INSTAGRAM: https://instagram.com/italk.studios?utm_medium=copy_link iTALK STUDIOS TWITTER: https://twitter.com/italkstudiosyt?s=21 iTALK STUDIOS DISCORD SERVER: https://discord.gg/qhFTAQF2 iTALK STUDIOS SECOND CHANNEL: https://m.youtube.com/channel/UCsfHvVTMCi1_gPtlUmtUbTg VIDEO MUSIC CREDIT TO @mikhelvin AND @samuelkimmusic Mik ► Spotify: https://spoti.fi/3jaB7yS ► Instagram: https://www.instagram.com/mikhelvin Samuel Kim ► Spotify: https://spoti.fi/2vYKPBd ► YouTube: https://www.youtube.com/c/samuelkimmusic ► Instagram: https://www.instagram.com/samuelkimmusic

    published: 04 Aug 2022
Astros' Justin Verlander dominates for first ever World Series win!!
3:00

Astros' Justin Verlander dominates for first ever World Series win!!

  • Order:
  • Duration: 3:00
  • Uploaded Date: 04 Nov 2022
  • views: 50998
Justin Verlander dominates for first ever World Series win!! Don't forget to subscribe! https://www.youtube.com/mlb Follow us elsewhere too: Twitter: https://twitter.com/MLB Instagram: https://www.instagram.com/mlb/ Facebook: https://www.facebook.com/mlb TikTok: https://www.tiktok.com/share/user/6569247715560456198 Check out MLB.com daily to watch the MLB.TV Free Game of the Day! https://mlb.com/freegame Visit our site for all baseball news, stats and scores! https://www.mlb.com/
https://wn.com/Astros'_Justin_Verlander_Dominates_For_First_Ever_World_Series_Win
All 27 Outs from Justin Verlander's No-Hitter
6:23

All 27 Outs from Justin Verlander's No-Hitter

  • Order:
  • Duration: 6:23
  • Uploaded Date: 02 Sep 2019
  • views: 290245
Watch Justin Verlander get all 27 outs of his no-hitter vs. the Blue Jays! Don't forget to subscribe! https://www.youtube.com/mlb Follow us elsewhere too: Twitter: https://twitter.com/MLB Instagram: https://www.instagram.com/mlb/ Facebook: https://www.facebook.com/mlb TikTok: https://www.tiktok.com/share/user/6569247715560456198 Visit our site for all baseball news, stats and scores! https://www.mlb.com/
https://wn.com/All_27_Outs_From_Justin_Verlander's_No_Hitter
Justin Verlander SHUTS DOWN Yankees, strikes out 11 in ALCS Game 1
1:28

Justin Verlander SHUTS DOWN Yankees, strikes out 11 in ALCS Game 1

  • Order:
  • Duration: 1:28
  • Uploaded Date: 20 Oct 2022
  • views: 30279
Justin Verlander SHUTS DOWN Yankees, strikes out 11 in ALCS Game 1 Don't forget to subscribe! https://www.youtube.com/mlb Follow us elsewhere too: Twitter: https://twitter.com/MLB Instagram: https://www.instagram.com/mlb/ Facebook: https://www.facebook.com/mlb TikTok: https://www.tiktok.com/share/user/6569247715560456198 Check out MLB.com daily to watch the MLB.TV Free Game of the Day! https://mlb.com/freegame Visit our site for all baseball news, stats and scores! https://www.mlb.com/
https://wn.com/Justin_Verlander_Shuts_Down_Yankees,_Strikes_Out_11_In_Alcs_Game_1
Justin Verlander charms Kate Upton
0:25

Justin Verlander charms Kate Upton

  • Order:
  • Duration: 0:25
  • Uploaded Date: 05 Aug 2014
  • views: 94861
8/4/14: Kate Upton is given a baseball at the Yankee game by Tigers pitcher Justin Verlander Check out http://m.mlb.com/video for our full archive of videos, and subscribe on YouTube for the best, exclusive MLB content: http://youtube.com/MLB About MLB.com: Commissioner Allan H. (Bud) Selig announced on January 19, 2000, that the 30 Major League club owners voted unanimously to centralize all of Baseball's internet operations into an independent technology company. Major League Baseball Advanced Media (MLBAM) was formed and charged with developing, building and managing the most comprehensive baseball experience available on the internet. In August 2002, MLB.com streamed the first-ever live, full length MLB game when the Texas Rangers and New York Yankees faced off at Yankee Stadium. Since that time, millions of baseball fans around the world have subscribed to MLB.TV, the live video streaming product that airs every game in HD to nearly 400 different devices. MLB.com also provides an array of mobile apps for fans to choose from, including At Bat, the highest-grossing iOS sports app of all-time. MLB.com features a stable of club beat reporters and award-winning national columnists, the largest contingent of baseball reporters under one roof, who deliver over 100 original articles every day. MLB.com also offers extensive historical information and footage, online ticket sales, official baseball merchandise, authenticated memorabilia and collectibles and fantasy games. Major League Baseball consists of 30 teams split between the American and National Leagues. The American League, originally founded in 1901, consists of the following teams: Baltimore Orioles; Boston Red Sox; Chicago White Sox; Cleveland Indians; Detroit Tigers; Houston Astros; Kansas City Royals; Los Angeles Angels of Anaheim; Minnesota Twins; New York Yankees; Oakland Athletics; Seattle Mariners; Tampa Bay Rays; Texas Rangers; and Toronto Blue Jays. The National League, originally founded in 1876, consists of the following teams: Arizona Diamondbacks; Atlanta Braves; Chicago Cubs; Cincinnati Reds; Colorado Rockies; Los Angeles Dodgers; Miami Marlins; Milwaukee Brewers; New York Mets; Philadelphia Phillies; Pittsburgh Pirates; San Diego Padres; San Francisco Giants; St. Louis Cardinals; and Washington Nationals. Visit MLB.com: http://mlb.mlb.com Subscribe to MLB.TV: mlb.tv Download MLB.com At Bat: http://mlb.mlb.com/mobile/atbat Get tickets: http://mlb.mlb.com/tickets Official MLB Merchandise: http://mlb.mlb.com/shop Join the conversation! Twitter: http://twitter.com/mlb Facebook: http://facebook.com/mlb Instagram: http://instagram.com/mlb Google+: https://plus.google.com/+MLB Tumblr: http://drawntomlb.com/ Pinterest: http://pinterest.com/MLBAM
https://wn.com/Justin_Verlander_Charms_Kate_Upton
Justin Verlander Max Scherzer BEEF EXPLAINED
4:07

Justin Verlander Max Scherzer BEEF EXPLAINED

  • Order:
  • Duration: 4:07
  • Uploaded Date: 15 Feb 2023
  • views: 57320
Justin Verlander Max Scherzer BEEF EXPLAINED #mlb #baseball #sports Tim Healey article on the situation: https://www.newsday.com/beta/sports/baseball/mets/justin-verlander-max-scherzer-detroit-tigers-gcdr1nvl iTALK STUDIOS INSTAGRAM: https://instagram.com/italk.studios?utm_medium=copy_link iTALK STUDIOS TWITTER: https://twitter.com/italkstudiosyt?s=21 iTALK STUDIOS DISCORD SERVER: https://discord.gg/qhFTAQF2 iTALK STUDIOS SECOND CHANNEL: https://m.youtube.com/channel/UCsfHvVTMCi1_gPtlUmtUbTg VIDEO MUSIC CREDIT TO @mikhelvin AND @samuelkimmusic Mik ► Spotify: https://spoti.fi/3jaB7yS ► Instagram: https://www.instagram.com/mikhelvin Samuel Kim ► Spotify: https://spoti.fi/2vYKPBd ► YouTube: https://www.youtube.com/c/samuelkimmusic ► Instagram: https://www.instagram.com/samuelkimmusic
https://wn.com/Justin_Verlander_Max_Scherzer_Beef_Explained
Justin Verlander's EPIC locker room speech after the Houston Astros advance to ALCS | Flippin’ Bats
1:08

Justin Verlander's EPIC locker room speech after the Houston Astros advance to ALCS | Flippin’ Bats

  • Order:
  • Duration: 1:08
  • Uploaded Date: 12 Oct 2023
  • views: 25252
Watch Justin Verlander's EPIC locker room speech after the Houston Astros punched their ticket to the all Texas ALCS. #FlippinBats #mlb #houston #astros #playoffs #postseason #alcs SUBSCRIBE to get the latest Flippin’ Bats with Ben Verlander content: https://www.youtube.com/flippinbatspod?sub_confirmation=1 Listen to the Flippin’ Bats with Ben Verlander podcast on Apple Podcasts: http://foxs.pt/fbpod_YT Listen to the Flippin’ Bats with Ben Verlander podcast on Spotify: http://foxs.pt/fbpod_YT_Spot The all-new FOX Sports App, built for the modern sports fan: https://tinyurl.com/y4uouolb ►FOX Sports YouTube: https://www.youtube.com/user/FoxSports Like Flippin’ Bats with Ben Verlander Facebook: https://www.facebook.com/flippinbatspod/ Follow Flippin’ Bats with Ben Verlander on TikTok: https://www.tiktok.com/@flippinbatspod?is_from_webapp=1&sender_device=pc Follow Flippin’ Bats with Ben Verlander on Threads: https://www.threads.net/@flippinbatspod Follow Flippin’ Bats with Ben Verlander on Twitter: https://twitter.com/FlippinBatsPod Follow Flippin’ Bats with Ben Verlander on Instagram: https://www.instagram.com/flippinbatspod/ Justin Verlander's EPIC locker room speech after the Houston Astros advance to ALCS | Flippin’ Bats https://youtu.be/3n9kwmXA00k
https://wn.com/Justin_Verlander's_Epic_Locker_Room_Speech_After_The_Houston_Astros_Advance_To_Alcs_|_Flippin’_Bats
Justin Verlander returns to Houston where he won TWO World Series titles! (Astros career highlights)
4:26

Justin Verlander returns to Houston where he won TWO World Series titles! (Astros career highlights)

  • Order:
  • Duration: 4:26
  • Uploaded Date: 20 Jun 2023
  • views: 21599
Justin Verlander takes the mound against his former team in Houston. Take a look back at his legendary Astros run (2017-2022) Don't forget to subscribe! https://www.youtube.com/mlb Follow us elsewhere too: Twitter: https://twitter.com/MLB Instagram: https://www.instagram.com/mlb/ Facebook: https://www.facebook.com/mlb TikTok: https://www.tiktok.com/share/user/6569247715560456198 Check out MLB.com daily to watch the MLB.TV Free Game of the Day! https://mlb.com/freegame Visit our site for all baseball news, stats and scores! https://www.mlb.com/
https://wn.com/Justin_Verlander_Returns_To_Houston_Where_He_Won_Two_World_Series_Titles_(Astros_Career_Highlights)
Justin Verlander's Impossible Inning: A Study in Velocity and Spin Rate l Baseball Bits
15:16

Justin Verlander's Impossible Inning: A Study in Velocity and Spin Rate l Baseball Bits

  • Order:
  • Duration: 15:16
  • Uploaded Date: 20 Dec 2018
  • views: 1797931
TWITTER: https://twitter.com/FoolishBB PATREON: https://www.patreon.com/foolishbaseball On May 24, 2012, Justin Verlander pitched the greatest inning ever. That's my thesis and I'm sticking to it. It was not an immaculate inning, nor was it three pitches. It was, however, the most dominant inning ever pitched. In this third episode of Baseball Bits, we take a look at data from Statcast and PITCHf/x to show precisely just how special Justin Verlander's four seam fastball spin rate and Justin Verlander's velocity were in the 8th inning. Statcast spin rate is huge now, but can we use PITCHf/x to get a good estimate for data before 2015? It's time to find out in this baseball video essay, which also seeks to explain the term "rising fastball." Oh, and did I mention that JV is angry the whole time? He is angry enough that the Youtube video for this inning is simply called "Not Happy JV." That says a lot right there. He cranks out heater after heater, including a 102 MPH fastball that threatens to destroy the very fabric of our universe. Justin Verlander follows those up with devastating curveballs as well. While many have grown to love Justin Verlander on the Astros, the Justin Verlander Tigers days were something to behold, and I attempt to rectify a somewhat forgotten inning from a living legend. Why? I believe that it's the best inning ever pitched. Pure and simple. I mean, just look at that high spin rate fastball! You do not want to be on the receiving end of a Justin Verlander four seam fastball. I'm certain of that. - Foolish Baseball ________________________ Not Happy JV: https://www.youtube.com/watch?v=QZUFjumWgO0 Flopps Baseball Cards: http://www.flipflopflyin.com/flipflopflyball/flopps.html Whiff City Chart, originally constructed by Jeff Zimmerman: https://docs.google.com/spreadsheets/d/1HI-dikWN64clxSGJu2QV8C64R9Bkzt8K-jFaeHj4X7k/edit?fbclid=IwAR1j26VYBbM9REeX-AHEH33dG17mZ5gxbO6cTN7Gzmk6ELzaMEENP9GS-J4#gid=0 Effectively Wild Facebook group, I see y'all.
https://wn.com/Justin_Verlander's_Impossible_Inning_A_Study_In_Velocity_And_Spin_Rate_L_Baseball_Bits
Justin Verlander gives Kate Upton a baseball
0:48

Justin Verlander gives Kate Upton a baseball

  • Order:
  • Duration: 0:48
  • Uploaded Date: 05 Aug 2014
  • views: 402942
8/4/14: Kate Upton is given a baseball at the Yankee game by Tigers pitcher Justin Verlander Check out http://m.mlb.com/video for our full archive of videos, and subscribe on YouTube for the best, exclusive MLB content: http://youtube.com/MLB About MLB.com: Commissioner Allan H. (Bud) Selig announced on January 19, 2000, that the 30 Major League club owners voted unanimously to centralize all of Baseball's internet operations into an independent technology company. Major League Baseball Advanced Media (MLBAM) was formed and charged with developing, building and managing the most comprehensive baseball experience available on the internet. In August 2002, MLB.com streamed the first-ever live, full length MLB game when the Texas Rangers and New York Yankees faced off at Yankee Stadium. Since that time, millions of baseball fans around the world have subscribed to MLB.TV, the live video streaming product that airs every game in HD to nearly 400 different devices. MLB.com also provides an array of mobile apps for fans to choose from, including At Bat, the highest-grossing iOS sports app of all-time. MLB.com features a stable of club beat reporters and award-winning national columnists, the largest contingent of baseball reporters under one roof, who deliver over 100 original articles every day. MLB.com also offers extensive historical information and footage, online ticket sales, official baseball merchandise, authenticated memorabilia and collectibles and fantasy games. Major League Baseball consists of 30 teams split between the American and National Leagues. The American League, originally founded in 1901, consists of the following teams: Baltimore Orioles; Boston Red Sox; Chicago White Sox; Cleveland Indians; Detroit Tigers; Houston Astros; Kansas City Royals; Los Angeles Angels of Anaheim; Minnesota Twins; New York Yankees; Oakland Athletics; Seattle Mariners; Tampa Bay Rays; Texas Rangers; and Toronto Blue Jays. The National League, originally founded in 1876, consists of the following teams: Arizona Diamondbacks; Atlanta Braves; Chicago Cubs; Cincinnati Reds; Colorado Rockies; Los Angeles Dodgers; Miami Marlins; Milwaukee Brewers; New York Mets; Philadelphia Phillies; Pittsburgh Pirates; San Diego Padres; San Francisco Giants; St. Louis Cardinals; and Washington Nationals. Visit MLB.com: http://mlb.mlb.com Subscribe to MLB.TV: mlb.tv Download MLB.com At Bat: http://mlb.mlb.com/mobile/atbat Get tickets: http://mlb.mlb.com/tickets Official MLB Merchandise: http://mlb.mlb.com/shop Join the conversation! Twitter: http://twitter.com/mlb Facebook: http://facebook.com/mlb Instagram: http://instagram.com/mlb Google+: https://plus.google.com/+MLB Tumblr: http://drawntomlb.com/ Pinterest: http://pinterest.com/MLBAM
https://wn.com/Justin_Verlander_Gives_Kate_Upton_A_Baseball
The RISE, FALL, And RESURGENCE Of Justin Verlander
13:23

The RISE, FALL, And RESURGENCE Of Justin Verlander

  • Order:
  • Duration: 13:23
  • Uploaded Date: 04 Aug 2022
  • views: 150287
The RISE, FALL, And RESURGENCE Of Justin Verlander. #mlb #baseball #sports iTALK STUDIOS INSTAGRAM: https://instagram.com/italk.studios?utm_medium=copy_link iTALK STUDIOS TWITTER: https://twitter.com/italkstudiosyt?s=21 iTALK STUDIOS DISCORD SERVER: https://discord.gg/qhFTAQF2 iTALK STUDIOS SECOND CHANNEL: https://m.youtube.com/channel/UCsfHvVTMCi1_gPtlUmtUbTg VIDEO MUSIC CREDIT TO @mikhelvin AND @samuelkimmusic Mik ► Spotify: https://spoti.fi/3jaB7yS ► Instagram: https://www.instagram.com/mikhelvin Samuel Kim ► Spotify: https://spoti.fi/2vYKPBd ► YouTube: https://www.youtube.com/c/samuelkimmusic ► Instagram: https://www.instagram.com/samuelkimmusic
https://wn.com/The_Rise,_Fall,_And_Resurgence_Of_Justin_Verlander
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • Astros' Justin Verlander dominates for first ever World Series win!!
    3:00
    Astros' Justin Verlander dominates for first ever World Series win!!remove from playlist
  • All 27 Outs from Justin Verlander's No-Hitter
    6:23
    All 27 Outs from Justin Verlander's No-Hitterremove from playlist
  • Justin Verlander SHUTS DOWN Yankees, strikes out 11 in ALCS Game 1
    1:28
    Justin Verlander SHUTS DOWN Yankees, strikes out 11 in ALCS Game 1remove from playlist
  • Justin Verlander charms Kate Upton
    0:25
    Justin Verlander charms Kate Uptonremove from playlist
  • Justin Verlander Max Scherzer BEEF EXPLAINED
    4:07
    Justin Verlander Max Scherzer BEEF EXPLAINEDremove from playlist
  • Justin Verlander's EPIC locker room speech after the Houston Astros advance to ALCS | Flippin’ Bats
    1:08
    Justin Verlander's EPIC locker room speech after the Houston Astros advance to ALCS | Flippin’ Batsremove from playlist
  • Justin Verlander returns to Houston where he won TWO World Series titles! (Astros career highlights)
    4:26
    Justin Verlander returns to Houston where he won TWO World Series titles! (Astros career highlights)remove from playlist
  • Justin Verlander's Impossible Inning: A Study in Velocity and Spin Rate l Baseball Bits
    15:16
    Justin Verlander's Impossible Inning: A Study in Velocity and Spin Rate l Baseball Bitsremove from playlist
  • Justin Verlander gives Kate Upton a baseball
    0:48
    Justin Verlander gives Kate Upton a baseballremove from playlist
  • The RISE, FALL, And RESURGENCE Of Justin Verlander
    13:23
    The RISE, FALL, And RESURGENCE Of Justin Verlanderremove from playlist
PLAYLIST TIME: 0:00 / 50:24

Astros' Justin Verlander dominates for first ever World Series win!!

Justin Verlander dominates for first ever World Series win!! Don't forget to subscribe! https://www.youtube.com/mlb Follow us elsewhere too: Twitter: https://twitter.com/MLB Instagram: https://www.instagram.com/mlb/ Facebook: https://www.facebook.com/mlb TikTok: https://www.tiktok.com/share/user/6569247715560456198 Check out MLB.com daily to watch the MLB.TV Free Game of the Day! https://mlb.com/freegame Visit our site for all baseball news, stats and scores! https://www.mlb.com/
3:00
Astros' Justin Verlander dominates for first ever World Series win!!
Justin Verlander dominates for first ever World Series win!! Don't forget to subscribe! h...
published: 04 Nov 2022
Play in Full Screen
6:23
All 27 Outs from Justin Verlander's No-Hitter
Watch Justin Verlander get all 27 outs of his no-hitter vs. the Blue Jays! Don't forget t...
published: 02 Sep 2019
Play in Full Screen
1:28
Justin Verlander SHUTS DOWN Yankees, strikes out 11 in ALCS Game 1
Justin Verlander SHUTS DOWN Yankees, strikes out 11 in ALCS Game 1 Don't forget to subscr...
published: 20 Oct 2022
Play in Full Screen
0:25
Justin Verlander charms Kate Upton
8/4/14: Kate Upton is given a baseball at the Yankee game by Tigers pitcher Justin Verland...
published: 05 Aug 2014
Play in Full Screen
4:07
Justin Verlander Max Scherzer BEEF EXPLAINED
Justin Verlander Max Scherzer BEEF EXPLAINED #mlb #baseball #sports Tim Healey article ...
published: 15 Feb 2023
Play in Full Screen
1:08
Justin Verlander's EPIC locker room speech after the Houston Astros advance to ALCS | Flippin’ Bats
Watch Justin Verlander's EPIC locker room speech after the Houston Astros punched their ti...
published: 12 Oct 2023
Play in Full Screen
4:26
Justin Verlander returns to Houston where he won TWO World Series titles! (Astros career highlights)
Justin Verlander takes the mound against his former team in Houston. Take a look back at h...
published: 20 Jun 2023
Play in Full Screen
15:16
Justin Verlander's Impossible Inning: A Study in Velocity and Spin Rate l Baseball Bits
TWITTER: https://twitter.com/FoolishBB PATREON: https://www.patreon.com/foolishbaseball O...
published: 20 Dec 2018
Play in Full Screen
0:48
Justin Verlander gives Kate Upton a baseball
8/4/14: Kate Upton is given a baseball at the Yankee game by Tigers pitcher Justin Verland...
published: 05 Aug 2014
Play in Full Screen
13:23
The RISE, FALL, And RESURGENCE Of Justin Verlander
The RISE, FALL, And RESURGENCE Of Justin Verlander. #mlb #baseball #sports iTALK STUDIO...
published: 04 Aug 2022
Play in Full Screen

Justin Verlander

Justin Brooks Verlander (born February 20, 1983) is an American professional baseball pitcher for the Detroit Tigers of Major League Baseball (MLB).

In 2006, Verlander was named the American League (AL) Rookie of the Year. On June 12, 2007, he pitched a no-hitter—the first ever at Comerica Park—against the Milwaukee Brewers, striking out 12 batters and walking four. He pitched a second no-hitter against the Toronto Blue Jays on May 7, 2011, in Toronto, walking one and facing the minimum 27 batters. On November 15, 2011, Verlander was named the 2011 AL Cy Young Award winner by a unanimous vote, becoming the first American League pitcher since Johan Santana in 2006 to win the award in such a fashion. On November 21, 2011, Verlander was voted the AL Most Valuable Player (MVP), winning with 280 points over Jacoby Ellsbury's 242, completing a sweep of the Cy Young Award and MVP. He is listed at 6'5" and 225 pounds.

Baseball career

Amateur career

Verlander's father Richard sent him to The Richmond Baseball Academy. He was able to throw his fastball 84 mph (135 km/h) shortly after joining the academy. His velocity plateaued at 86 mph (138 km/h) during his senior year at Goochland High School, during which he was sidetracked by strep throat. Verlander's velocity reached 87 mph (140 km/h) during his first year at Old Dominion.

'); } else { var query = elem.find('.keywords').html(); $.ajax({ context: elem, url: 'https://wn.com/api/upge/cheetah-search-adv/video', cache: true, data: { 'query': query }, dataType: 'jsonp', success: function(text) { if (text.length > 0) { video_id = text[0].id; elem.find('.player').html(''); } } }); } } var stopAllYouTubeVideos = function() { var iframes = document.querySelectorAll('iframe'); Array.prototype.forEach.call(iframes, function(iframe) { iframe.contentWindow.postMessage(JSON.stringify({ event: 'command', func: 'pauseVideo' }), '*'); }); } jQuery(function() { jQuery(".playVideo").live("click", function() { if(!$(this).hasClass("played")){ stopAllYouTubeVideos(); var elem = $(this); setTimeout(function(){ mouseOverMe(elem); }, 1000); } }); jQuery(".description_box .expandContent").live("click", function() { elem = $(this).parent().parent().parent().find('.descContent'); if(elem.height() > 51) { elem.css('height', '44px'); $(this).html('Show More '); }else{ elem.css('height', 'auto'); $(this).html('Hide '); } }); jQuery('.interview-play-off').click(function() { $(".interview-play-off").hide(); $(".interview-play").show(); $(".videoplayer-control-pause").click(); }); jQuery(".video-desc .show_author_videos").live("click", function() { query = $(this).attr('title'); container = $(this).parent().parent().parent().find('.video-author-thumbs'); $(this).parent().parent().parent().find('.video-author-thumbs').css('height', '220px'); jQuery.ajax({ url: '/api/upge/cheetah-photo-search/videoresults', data: {'query': query}, success: function(text) { if(!text) { text = i18n("No results"); } container.html(jQuery(text)); } }); }); }); // -->

Latest News for: verlander

Edit

Verlander still winless as SF Giants bullpen blows lead in loss to MLB’s last-place team

The Brunswick News 02 May 2025
SAN FRANCISCO – The San Francisco Giants’ bullpen fell apart in the late going, and Justin Verlander still does not have a win in his now not-so-new uniform. Tyler Rogers, who had allowed only one run in 16 games this ... .
Edit

Rockies rally past Giants 4-3, denying Justin Verlander his 1st win since joining San Francisco

Hastings Tribune 02 May 2025
SAN FRANCISCO (AP) — Jordan Beck hit a tying double in the eighth inning and Hunter Goodman singled home the go-ahead run two batters later as the Colorado Rockies rallied past San Francisco 4-3 on Thursday night to deny Justin ... .
Edit

Rockies rally past Giants, denying Verlander first win as a Giant

TSN Canada 02 May 2025
Verlander struck out four and pitched into the seventh but remains without a win since joining San Francisco ... Camilo Doval relieved Verlander one out later and retired the next two batters.
Edit

Eovaldi outlasts Verlander as Rangers beay Giants 2-0

The Galveston Daily News 26 Apr 2025
Nathan Eovaldi and three relievers combined on an a four-hitter in the Texas Rangers’ 2-0 victory over the San Francisco Giants on Friday night. Wyatt Langford had three hits and an RBI to help the Rangers win in manager Bruce ....
Edit

Eovaldi supera a Verlander y los Rangers vencen 2-0 a los Gigantes

Lancaster Online 26 Apr 2025
SAN FRANCISCO (AP) — Nathan Eovaldi y tres relevistas se combinaron para permitir solo cuatro hits en la victoria del viernes por la noche de los Rangers de Texas por 2-0 sobre los Gigantes de San Francisco ... .
Edit

Nathan Eovaldi outduels Justin Verlander, Rangers blank Giants

Henry Herald 26 Apr 2025
Nathan Eovaldi prevailed in a pitchers' duel with Justin Verlander, Wyatt Langford had an RBI double among three hits, and the Texas Rangers opened a three-game road series with a 2-0 victory over the San Francisco Giants on Friday night ... .
Edit

Eovaldi outlasts Verlander as Rangers beat Giants 2-0

San Francisco Examiner 26 Apr 2025
Despite another solid outing, Justin Verlander is still in search of his first win as a Giant ....
Edit

Eovaldi outlasts Verlander as Rangers beat Giants

TSN Canada 26 Apr 2025
Eovaldi (2-2) allowed three hits and had seven strikeouts with one walk in his 300th career game in the majors while outdueling three-time Cy Young Award winner Justin Verlander ... Verlander generated 13 swing-and-misses on the 89 pitches he threw.
Edit

Verlander delivers his sharpest start yet for the Giants, but Angels' rally denies him win ...

The News-Enterprise 21 Apr 2025
Justin Verlander allowed a run and two hits in six innings. He was in line for his first victory with the San Francisco Giants until the Los Angeles Angels scored four runs in the ninth to steal a 5-4 win ... .
Edit

Verlander sharp, but Angels stun Giants in 9th

San Francisco Examiner 21 Apr 2025
The Angels scored four runs in the ninth to steal a 5-4 win ....
Edit

Verlander delivers sharpest start yet for Giants, but Angels' rally denies him win No. 263

TSN Canada 21 Apr 2025
In fact, this entire start showed Verlander still has a bit left in the tank. Verlander allowed a run and two hits in six innings Sunday ... Verlander struck out six and lowered his ERA to 5.47 ... Trout is just 5 for 45 against Verlander.
×