Extracts the hour of the day from a date/time object.
 Ordinal value of the hour, in the range 0 - 23.
					
					hour(date)
					
						→ returns numeric
					
				
							date.hour()
							
						
dt = createdatetime(2016,1,1,5,30,25);
h = hour( dt );
writeoutput( h );Expected Result: 5
hour( now() )Signup for cfbreak to stay updated on the latest news from the ColdFusion / CFML community. One email, every friday.