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:

  1. the language's technical limitations
  2. good programming practices
  3. common industry standards for the language

Source: Kenneth Leroy Busbee and Dave Braunschweig, https://press.rebus.community/programmingfundamentals/chapter/identifier-names/
Creative Commons License This work is licensed under a Creative Commons Attribution-ShareAlike 4.0 License.