Identifier and Variable Names
Overview
Within programming a variety of items are given descriptive names to make the code more meaningful to us as humans. These names are called "Identifier Names". Constants, variables, type definitions, functions, etc. when declared or defined are identified by a name. These names follow a set of rules that are imposed by:
- the language's technical limitations
- good programming practices
- common industry standards for the language
Source: Kenneth Leroy Busbee and Dave Braunschweig, https://press.rebus.community/programmingfundamentals/chapter/identifier-names/
This work is licensed under a Creative Commons Attribution-ShareAlike 4.0 License.