Skip to main content

Identifier ↔ name/reference for Variable as pointer to bind a Value to a memory address

camelCase

(convention) to name Identifier by concatenate first world lowercase & subsequent words capitalized

PascalCase

(convention) to name Identifier by concatenate words capitalized

kebab-case

(convention) to name Identifier by concatenate words via - delimiter

snake_case

(convention) to name Identifier by concatenate words via _ delimiter

References

  1. Reference ReassignmentNew Identifier created 👉 same value to ref Heap Memory Address (where actual Object store in Heap)

  2. = ↔ Assignment Operator to bind Value to Identifier & save at Memory Address

  3. Typed Optional ParameterTS Syntax to mark Identifier as an optional Parameter using ?:

  4. camelCase ↔ (convention) to name Identifier by concatenate first world lowercase & subsequent words capitalized

  5. PascalCase ↔ (convention) to name Identifier by concatenate words capitalized

  6. kebab-case ↔ (convention) to name Identifier by concatenate words via - delimiter

  7. snake_case ↔ (convention) to name Identifier by concatenate words via _ delimiter

  8. ReferenceErrorException due to illegal reference Identifier

  9. Variable ↔ named ref (Identifier) bound to a Value

  10. Rest Parameter... JS Syntax prefix Identifier to receive Array with arb remaining args

  11. Anon Functionfunction w/o Identifier

  12. Binding ↔ (formal ECMAScript term for Variable) Identifier to catch & hold Value 🐭

  13. Variable Declaration ↔ initial step of creating new Variable by creating a new Identifier

  14. Nominal Type SystemStatic Type equivalance by same "name" Identifier

  15. label ↔ to prefix Statement with Identifier to call with break & continue