Game Result


Play Time
10:07 AM W50
09:52 AM B47
09:37 AM X49
09:22 AM C28
09:07 AM M59
08:52 AM H26
08:37 AM S18
08:22 AM B65
08:07 AM B59
//$(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