Converting 24 hour time to 12 hour time using Javascript

// convert hours to 12-hour format
hours = ((hours + 11) % 12 + 1);