Whatever message this page gives is out now! Go check it out!
IsCustomFunction(name)Parameter | Description |
name | Name of a custom function. Must not be in quotation marks. If not a defined variable or function name, ColdFusion generates an error. |
<cfscript>
// CustomFunction
function2 = function (sum) {};
writeoutput("Is it a customFunction: " & isCustomFunction(function2));
</cfscript>