Pri streljanju kazenskih strelov sta bila uspešna Johnny Gaudreau in Matthew Tkachuk.
Sean Monahan se je z golom (končal je kar 13 tekem dolgo strelsko sušo) in podajo izkazal v rednem delu.
New York Rangersi so za tretjo zmago v nizu in deveto na zadnjih desetih tekmah z 1:0 ugnali San Jose, dvoboj je odločil Ryan Strome z igralcem več v sedmi minuti.
Winnipeg je z 8:4 odpravil New Jersey, Mark Scheifele je dosegel hat-trick, imel pa je še eno podajo.
Seattle je s 4:3 premagal Edmonton. Zadeli so Yanni Gourde, Adam Larsson (nekdanji igralec Oilersov), Colin Blackwell in Alex Wennberg. Pri gostih je Nemec Leon Draisaitl, prvi strelec lige, dosegel gol in podajo.
Liga NHL, tekme 3. decembra:
NY RANGERS – SAN JOSE 1:0
WINNIPEG – NEW JERSEY 8:4
ARIZONA – VEGAS 1:7
SEATTLE – EDMONTON 4:3
ANAHEIM – CALGARY 3:4 (kazenski streli)
Lestvica – Vzhodna konferenca
METROPOLITANSKA T Z P PK To WASHINGTON CAPITALS 24 14 4 6 34 NEW YORK RANGERS 22 15 4 3 33 CAROLINA HURRICANES 22 15 6 1 31 ATLANTSKA T Z P PK To FLORIDA PANTHERS 23 16 4 3 35 TORONTO MAPLE LEAFS 24 17 6 1 35 TAMPA BAY LIGHTNING 22 13 5 4 30 "WILD CARD" T Z P PK To DETROIT RED WINGS 24 12 9 3 27 PITTSBURGH PENGUINS 23 10 8 5 25 -------------------------------------- BOSTON BRUINS 20 12 8 0 24 COLUMBUS BLUE JACKETS 21 12 9 0 24 NEW JERSEY DEVILS 22 9 9 4 22 PHILADELPHIA FLYERS 21 8 9 4 20 BUFFALO SABRES 23 8 12 3 19 MONTREAL CANADIENS 25 6 17 2 14 NEW YORK ISLANDERS 18 5 10 3 13 OTTAWA SENATORS 21 5 15 1 11
Zahodna konferenca
CENTRALNA T Z P PK To MINNESOTA WILD 23 16 6 1 33 ST. LOUIS BLUES 23 12 8 3 27 DALLAS STARS 21 12 7 2 26 PACIFIŠKA T Z P PK To CALGARY FLAMES 24 15 4 5 35 EDMONTON OILERS 22 16 6 0 32 ANAHEIM DUCKS 25 13 8 4 30 "WILD CARD" T Z P PK To SAN JOSE SHARKS 24 13 10 1 27 VEGAS GOLDEN KNIGHTS 23 13 10 0 26 -------------------------------------- WINNIPEG JETS 23 11 8 4 26 COLORADO AVALANCHE 20 12 7 1 25 NASHVILLE PREDATORS 23 12 10 1 25 LOS ANGELES KINGS 22 9 9 4 22 SEATTLE KRAKEN 24 9 13 2 20 CHICAGO BLACKHAWKS 22 8 12 2 18 VANCOUVER CANUCKS 24 8 14 2 18 ARIZONA COYOTES 24 5 17 2 12
// Production steps of ECMA-262, Edition 6, 22.1.2.1
Array.from||(Array.from=function(){var r;try{r=Symbol.iterator?Symbol.iterator:"Symbol(Symbol.iterator)"}catch(t){r="Symbol(Symbol.iterator)"}var t=Object.prototype.toString,n=function(r){return"function"==typeof r||"[object Function]"===t.call(r)},o=Math.pow(2,53)-1,e=function(r){var t=function(r){var t=Number(r);return isNaN(t)?0:0!==t&&isFinite(t)?(t>0?1:-1)*Math.floor(Math.abs(t)):t}(r);return Math.min(Math.max(t,0),o)};return function(t){var o=Object(t),a=n(o[r]);if(null==t&&!a)throw new TypeError("Array.from requires an array-like object or iterator - not null or undefined");var i,u=arguments.length>1?arguments[1]:void 0;if(void 0!==u){if(!n(u))throw new TypeError("Array.from: when provided, the second argument must be a function");arguments.length>2&&(i=arguments[2])}var f=e(o.length);return function(r,t,n,o,e,a){for(var i=0;i
// Dark mode, Comments & Login if (document.cookie.indexOf('darkModeEnabled=true') != -1) document.body.classList.add('dark-mode'); if (document.cookie.indexOf('showComments=true') != -1) document.body.classList.add('show-comments-enabled'); if (document.cookie.indexOf('APISESSION_USER_ID') != -1) { document.body.classList.add('user-logged-in'); } else { document.body.classList.add('user-logged-out'); }
// Mobile check var mobile = false; var mobile_xs = false;
var checkIfMobile = function checkIfMobile() { var w = window.innerWidth || document.documentElement.clientWidth || document.body.clientWidth;
w < 992 ? (mobile = true) : (mobile = false); // 992px = lg breakpoint w < 576 ? (mobile_xs = true) : (mobile_xs = false); // 576px = sm breakpoint }; checkIfMobile(); window.addEventListener("resize", checkIfMobile); // iOS standalone var isIos = function isIos() { var userAgent = window.navigator.userAgent.toLowerCase(); return /iphone|ipad|ipod/.test(userAgent); }; // Detects if device is on iOS var isInStandaloneMode = function isInStandaloneMode() { return "standalone" in window.navigator && window.navigator.standalone; }; // Detects if device is in iOS standalone mode var showIosNative = false; if (window.location.href.indexOf("show-ios-native") !== -1) document.cookie = "showIosNative=true"; if (document.cookie && document.cookie.indexOf("showIosNative=true") != -1) showIosNative = true; if ((isIos() && isInStandaloneMode() && mobile) || showIosNative) document.body.classList.add("ios-standalone"); // Facebook if(document.cookie && document.cookie.indexOf("cc_social=yes") > -1){ (function(d, s, id) { var js, fjs = d.getElementsByTagName(s)[0]; if (d.getElementById(id)) return; js = d.createElement(s); js.id = id; js.src="https://connect.facebook.net/sl_SI/sdk.js#xfbml=1&autoLogAppEvents=1&version=v3.1&appId=142347525793254"; fjs.parentNode.insertBefore(js, fjs); }(document, 'script', 'facebook-jssdk')); }