Game Result


Play Time
10:22 AM S13
10:07 AM B46
09:52 AM G40
09:37 AM I85
09:22 AM Z14
09:07 AM E08
08:52 AM R78
08:37 AM T81
08:22 AM L77
08:07 AM R79
//$(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