Game Result


Play Time
09:15 AM 0005 0117 0270 0350 0402
0539 0610 0798 0866 0986
09:00 AM 0082 0193 0200 0362 0439
0582 0642 0780 0872 0954
08:45 AM 0059 0147 0286 0377 0491
0577 0617 0753 0847 0922
08:30 AM 0014 0117 0200 0397 0461
0537 0605 0759 0842 0998
08:15 AM 0057 0104 0202 0389 0416
0561 0639 0763 0816 0994
08:00 AM 0092 0155 0219 0391 0432
0537 0673 0706 0839 0984
//$(document).ready(function(){ //get result // Check correct time format and split into components // If time format correct time = time.slice(1); // Remove full string match value time[5] = +time[0] < 12 ? "AM" : "PM"; // Set AM/PM time[0] = +time[0] % 12 || 12; // Adjust hours return time.join(""); // return adjusted time or original string