Date Addition Using CreateTimeSpan() Creates A Numeric Date

<!--- Get a date that is 10 minutes in the future. --->
<cfset objFuture = (Now() + CreateTimeSpan( 0, 0, 10, 0 )) />
 
IsDate() :: #IsDate( objFuture )#<br />
IsNumericDate() :: #IsNumericDate( objFuture )#<br />

For Cut-and-Paste