Vejledning - 7 dage om ugen 9.00-22.00

97 43 05 00

Trustpilot

Udsalg

Lysolieret Original snedker skab til kogeplade

   
var openingHour = getOpeningHour(new Date()); if(openingHour != null){ Object.keys(openingHour).forEach(function(oh){ $(oh).html(openingHour[oh]); }); } function getOpeningHour(today) { var result = null; if(typeof(openingHours) == 'undefined'){ return result; } Object.keys(openingHours).forEach(function(o){ let d = new Date(); d.setDate(o.split('-')[2]); d.setYear(o.split('-')[0]); d.setMonth(parseFloat(o.split('-')[1]) - 1); if(today.toDateString() == d.toDateString()){ result = openingHours[o]; } }); return result; }