/
Naming Convention
Naming Convention
There are two simple rules we encourage when it comes to naming conventions for functions:
1. Describe what your function does:
Using a name also helps you keep your functions short and concise.
A good format is: <verb><Entity>
The verb of what your function is doing.
The name of the entity that you are acting on.
2. Include the name of the system the function is interacting with:
When you include the interacting system in the name of your function, you are essentially grouping your functions by what they interact with based on their concerns.
Interacting systems can be databases, APIs, or file systems, and these can be further grouped under a specific client site.
A good format is: <system><Verb><Entity>
If you want to checkout more naming convention recommendations, see Naming Conventions for Functions and Variables.
, multiple selections available,
Related content
Structuring Component Translators
Structuring Component Translators
Read with this
Use Short Functions
Use Short Functions
More like this
Core Principles for Building Interfaces
Core Principles for Building Interfaces
Read with this
Meta tables
Meta tables
More like this
Three Keys to Interface Development
Three Keys to Interface Development
Read with this
Use a table as an argument to a function
Use a table as an argument to a function
More like this