Back

hasProperty()

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

Name Type Required Default Description
property string Yes Name of property to inspect.
// Get an object, set a value and then see if the property exists
employee = model("employee").new();
employee.firstName = "dude";
employee.hasProperty("firstName"); // returns true

// This is also a dynamic method that you could do
employee.hasFirstName();

Copied!