Parameter
        
            
                Last updated on 
                
                    Oct 27, 2023
                
            
            
        
        
    
Description
Sets the minute on the Date object. This is a member function called by the Date object.
Returns
DateObject
History
New in Adobe ColdFusion (2016 release)
Category
Syntax
setMinute (minute)
Parameter
| 
                    
     | 
            
                
                
                    
     Description  | 
            
        
| 
                    
     minute  | 
            
                
                
                    
     Required. An integer representing the minutes. Expected values are 0-59, but other values are allowed: 
  | 
            
        
Example
<cfscript>
       myDate=now();
       WriteOutput(myDate.setMinute(30));
</cfscript>
		
	
Output
{ts '2018-11-06 07:30:01'}
