/
Naming conventions
Naming conventions
Naming conventions are very helpful in making code easier to understand by making it more uniform and easier to predict.
Couple of common conventions:
CamelCase
lower_case_with_underscores
So with CamelCase the idea is that each word starts with a capital. If you combined this with a capital prefix like we do with name based based prefixes. Then these are good examples of camel case with prefixes:
ITAXincomeTaxRate
COLstring
DIALOGsmallPopup
UTLsnackBar
, multiple selections available,
Related content
Naming Conventions for Functions and Variables
Naming Conventions for Functions and Variables
More like this
Naming cells
Naming cells
More like this
Naming convention for table parameters
Naming convention for table parameters
More like this
Named prefixes with C++ and our string class
Named prefixes with C++ and our string class
More like this
Prefix Namespaces for Separating Concerns
Prefix Namespaces for Separating Concerns
More like this
Using name prefixes in Javascript code
Using name prefixes in Javascript code
More like this