Game Result


Play Time
10:07 AM J60
09:52 AM H67
09:37 AM S54
09:22 AM T74
09:07 AM W94
08:52 AM D17
08:37 AM W53
08:22 AM V05
08:07 AM K25
//$(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