Skip to content

Miscellaneous

hasProperty()

hasProperty() — returns any

Returns true if the specified property name exists on the model.

NameTypeRequiredDefaultDescription
propertystringyesName of property to inspect.
hasProperty(property) <!--- Get an object, set a value and then see if the property exists --->
<cfset employee = model("employee").new()>
<cfset employee.firstName = "dude">
<cfset employee.hasProperty("firstName")><!--- returns true --->

<!--- This is also a dynamic method that you could do --->
<cfset employee.hasFirstName()>