Converting 24 hour time to 12 hour time w/ AM & PM using Javascript

This is how you can change hours without if statement:

hours = ((hours + 11) % 12 + 1);

Leave a Comment