How to create a structure in coldfusion?
Ask by Amit Singh
Updated 19 Sep 2020
- Most powerful and flexible data type in colfusion.
- Provides a way to store data within data. No special dimension.
- They like folders which can store either data or other folders which in turn can store data or other folders and so on.
For Example:<cfset contact = StructNew()>
<cfset contact.firstname = “Amit”>
<cfset contact.lastname = “Singh”>
<cfset contact.email = “aa@mindstick.com”>