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
Reference Reassignment
↔ New Identifier created 👉 same value to ref Heap Memory Address (where actual Object store in Heap)=
↔ Assignment Operator to bind Value to Identifier & save at Memory AddressTyped Optional Parameter
↔ TS Syntax to mark Identifier as an optional Parameter using?:
camelCase
↔ (convention) to name Identifier by concatenate first world lowercase & subsequent words capitalizedPascalCase
↔ (convention) to name Identifier by concatenate words capitalizedkebab-case
↔ (convention) to name Identifier by concatenate words via-
delimitersnake_case
↔ (convention) to name Identifier by concatenate words via_
delimiterReferenceError
↔ Exception due to illegal reference IdentifierVariable
↔ named ref (Identifier) bound to a ValueRest Parameter
↔...
JS Syntax prefix Identifier to receive Array with arb remaining argsAnon Function
↔function
w/o IdentifierBinding
↔ (formal ECMAScript term for Variable) Identifier to catch & hold Value 🐭Variable Declaration
↔ initial step of creating new Variable by creating a new IdentifierNominal Type System
↔ Static Type equivalance by same "name" Identifierlabel
↔ to prefix Statement with Identifier to call withbreak
&continue