Whatever message this page gives is out now! Go check it out!
IsStruct(variable)IsStruct(variable)| Parameter | Description |
variable | Variable name |
<cfscript>
myStruct={}
myStruct.name="ColdFusion"
myStruct.version=2018
myStruct.releaseYear=2018
mystruct.releaseMonth="July"
writeOutput("Is myStruct a struct: " & isStruct(myStruct) )
</cfscript>