Last updated on 
                
                    Mar 12, 2024
                
            
            
        
        
    
Description
Returns the milliseconds of a specified date object.
Returns
Numeric
Syntax
millisecond(dateObject)
History
- ColdFusion (2021 release): Added the function.
Category
Parameters
| Parameter | Required | Description | 
|---|---|---|
| date | Yes | Date/time object, in the range 100 AD-9999 AD.. | 
| timeZone | No | Specify the time zone. You may use the function getTimeZomeInfo to retrieve the time zone of a place. | 
Example
<cfscript>
    writeOutput(millisecond(now()))
</cfscript>
		
	
Output
223
