Checks if the given value is a date / time object. The difference between isDateObject and isDate is that the latter returns true for date / time objects as well as date / time strings.
isDateObject(value)
→ returns boolean
<cfscript>
date = IsDateObject(now());
writeOutput("Can string be converted to a date/time value : " & date);
</cfscript>
Expected Result: Can string be converted to a date/time value : YES
Signup for cfbreak
to stay updated on the latest news from the ColdFusion / CFML community. One email, every friday.