Definition of "meridiem"
meridiem
noun
Quotations
Quantities and frequencies are distributed as follows (neglecting the meridiem hour): […]
1919, J. R. Sutton, “A Lunar Period in the Rates of Evaporation and Rainfall?”, in Transactions of the Royal Society of South Africa, volumes VII (1918–19), Cape Town: the Society, page 108
But when the sky had brightened for the meridiem—the two to three hours of dull yet hazardous sunlight that filtered through the thick cloud cover each planetary rotation—she’d had to retire underground, losing time.
2011, Guillermo Del Toro, Chuck Hogan, The Night Eternal (book III of The Strain Trilogy), William Morrow, page 14
(time/clock operation) Either a.m. or p.m.
Quotations
If a 12-hour clock is specified, the eighth field (the meridiem indicator) is required. […] If this input string is entered, the parse still recognizes “feb” as the month name and “am” as the meridiem indicator, even though the format string specified both of these fields as uppercase, and the month name as unabbreviated.
1994 March, “System Time Operations”, in OpenVMS Programming Concepts Manual, Maynard, Mass.: Digital Equipment Corporation, section 6 (Date/Time Formatting Routines), subsection 2 (Selecting a Format), subsubsection 3 (Specifying Input Formats at Run Time), pages 5–25
if (hour < 12) { meridiem = 'am'; } else { meridiem = 'pm'; }
2008 July, David Sawyer McFarland, “Working with Words, Numbers, and Dates”, in JavaScript: The Missing Manual, Pogue Press, part one (Getting Started with JavaScript), chapter section “Dates and Times”, subsection “Getting the Time”, page 143
To the right of the radio buttons, complete the Start Time and End Time fields and select the meridiem from the AM/PM menu to define the time during which the schedule is in effect.
2014 December, “Customize Firewall Protection”, in ProSAFE Dual WAN Gigabit SSL VPN Firewall: Model FVS336Gv3: Reference Manual, Netgear, section “Manage Firewall Objects”, subsection “Define a Schedule”, page 295
Ensure the meridiem (AM/PM) specification is set accordingly.
2015, “IP Environment Setup”, in STB-3000: HD Commercial Interface Set-top Box: Commercial Mode Setup Guide, LG Electronics U.S.A., Inc., section “Pro:Centric Setup”, page 56
Finally, we’ll write the method to render the appointment slot radio buttons. To do this we first have to filter the slots by availabity and by whether AM or PM is selected. Both are simple checks; for the first we see if it exists in state.schedule, for the later, we check the meridiem part with moment().format('a').
2020 March 13, Tony Spiro, “Build an Appointment Scheduler Using React, Twilio and Cosmic JS”, in HackerNoon
The digital clock has four parts: hour, minute, second, and meridiem. […] Assigning the Current Meridiem (AM/PM) / Since the Digital Clock is in a 12-hour format, you need to assign the appropriate meridiem according to the current hour.
2021 June 27, Yuvraj Chandra, “How to Create a Digital Clock Using HTML, CSS, and JavaScript”, in MUO